From 9a7db6ee269489a3f1223473134e9ddcaf0eb4e0 Mon Sep 17 00:00:00 2001 From: appleb_m Date: Tue, 2 Jun 2026 10:34:22 +0200 Subject: [PATCH] aerotech.py: corrected default url for X06DA beamline --- src/aare/devices/aerotech.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aare/devices/aerotech.py b/src/aare/devices/aerotech.py index 1c89cb2a..2542e853 100644 --- a/src/aare/devices/aerotech.py +++ b/src/aare/devices/aerotech.py @@ -17,7 +17,7 @@ class AerotechController(object): def __init__(self, bl: MXBeamline): if bl == MXBeamline.X06DA: self.__simulated = False - self.__base = cfg_get("daq.hardware.aerotech_url", "http://x06da-smargopolo.psi.ch:5234") + self.__base = cfg_get("daq.hardware.aerotech_url", "http://mx-x06da-queue-01.psi.ch:5234") elif bl == MXBeamline.X10SA: self.__simulated = False self.__base = cfg_get("daq.hardware.aerotech_url", "http://mx-x10sa-queue-01.psi.ch:5234")