We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2a7808 commit f8b6c6bCopy full SHA for f8b6c6b
src/fastcs/transports/epics/ca/ioc.py
@@ -193,7 +193,11 @@ def _make_record(
193
)
194
attribute_record_metadata = record_metadata_from_attribute(attribute)
195
196
- update = {"always_update": True, "on_update": on_update} if on_update else {}
+ update = (
197
+ {"on_update": on_update, "always_update": True, "blocking": True}
198
+ if on_update
199
+ else {}
200
+ )
201
202
record = builder_callable(
203
pv, **update, **datatype_record_metadata, **attribute_record_metadata
0 commit comments