Skip to content

Commit

Permalink
update method is working well
Browse files Browse the repository at this point in the history
  • Loading branch information
evalott100 committed Nov 11, 2024
1 parent 45d17c7 commit 304dd1b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/fastcs_pandablocks/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async def put(self, controller: Any, attr: AttrW, value: str) -> None:

class DefaultFieldUpdater(Updater):
#: We update the fields from the top level
update_period = float("inf")
update_period = None

def __init__(self, panda_name: PandaName):
self.panda_name = panda_name
Expand Down
1 change: 0 additions & 1 deletion src/fastcs_pandablocks/panda/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ async def update_field_value(self, panda_name: PandaName, value: str):

@scan(0.1)
async def update(self):
raise RuntimeError("FINALLY CALLED!")
changes = await self._raw_panda.get_changes()
await asyncio.gather(
*[
Expand Down

0 comments on commit 304dd1b

Please sign in to comment.