diff --git a/superxas_bec/devices/timepix/timepix.py b/superxas_bec/devices/timepix/timepix.py index a5f82cd..c693bb9 100644 --- a/superxas_bec/devices/timepix/timepix.py +++ b/superxas_bec/devices/timepix/timepix.py @@ -258,9 +258,10 @@ class Timepix(PSIDeviceBase, TimePixControl): # Fetch the backend socket info net_add = self.backend.timepix_fly_client.get_net_addresses() - print(f"TimePixFly backend is listening on: {net_add.address}") self.cam.raw_file_template.set("").wait(timeout=self._pv_timeout) - self.cam.raw_file_path.set(f"tcp://connect@127.0.0.1:8451").wait(timeout=self._pv_timeout) + self.cam.raw_file_path.set(f"tcp://connect@{net_add.address}").wait( + timeout=self._pv_timeout + ) def on_unstage(self) -> None: """Called while unstaging the device."""