From df73460d517ae0066dddf026a60eacfdacf39375 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Mon, 19 May 2025 15:25:39 +0200 Subject: [PATCH] Config: Resid address is BL dependent (to be tested) --- daq/src/aaredaq/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daq/src/aaredaq/config.py b/daq/src/aaredaq/config.py index 00498c69..4f908a3e 100644 --- a/daq/src/aaredaq/config.py +++ b/daq/src/aaredaq/config.py @@ -68,7 +68,7 @@ class BeamlineConfig: if bl is MXBeamline.SIMULATED: host = "localhost" else: - host = f"x06da-redis.psi.ch" + host = f"{self.__bl}-redis.psi.ch" self.__client = redis.Redis(host=host, port=6379, db=0, decode_responses=True) # Session and authentication management