From 379679812cb72f4e22c11beda2599ef419e9a3a0 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 16 Nov 2022 13:32:26 -0500 Subject: [PATCH] TOSQUASH? revert sym.lower() usage? --- piker/data/feed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/data/feed.py b/piker/data/feed.py index 57c3d6c3..534aebc9 100644 --- a/piker/data/feed.py +++ b/piker/data/feed.py @@ -990,7 +990,7 @@ async def allocate_persistent_feed( # a small streaming machine around the remote feed which can then # do the normal work of sampling and writing shm buffers # (depending on if we want sampling done on the far end or not?) - msg = init_msg[symstr.lower()] + msg = init_msg[symstr] # the broker-specific fully qualified symbol name, # but ensure it is lower-cased for external use.