From 4b1acfb8277399734d083c77861c4d64bbdb6ed0 Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Tue, 17 Jun 2025 13:43:15 +0200 Subject: [PATCH] Refactor TELL integration and update dependencies. Replaced direct puck management logic with a WebSocket-based system for real-time updates from TELL. Introduced `tellupdater.py` to handle updates and improved AareDB client usage for cleaner API interactions. Updated `pyproject.toml` files to include dependency changes, ensuring compatibility with new TELL workflows. --- daq/src/aaredaq/tellupdater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daq/src/aaredaq/tellupdater.py b/daq/src/aaredaq/tellupdater.py index 19a3b487..3c64d5d6 100644 --- a/daq/src/aaredaq/tellupdater.py +++ b/daq/src/aaredaq/tellupdater.py @@ -36,7 +36,7 @@ def ws_update_samples_info(pucks): def convert_pucks(puck_list): return [PuckWithTellPosition( - id=p.id, + id=p.puck_id, puck_name=p.puck_name, puck_type=getattr(p, 'puck_type', None), puck_location_in_dewar=getattr(p, 'puck_location_in_dewar', None),