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 c59410c commit 9239aafCopy full SHA for 9239aaf
RELEASE_NOTES.md
@@ -14,4 +14,4 @@
14
15
## Bug Fixes
16
17
-<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
+* Fixed that client.update() was ignoring updates to "payload".
src/frequenz/client/dispatch/_client.py
@@ -211,6 +211,8 @@ async def update(
211
msg.update.selector.CopyFrom(component_selector_to_protobuf(val))
212
case "is_active":
213
msg.update.is_active = val
214
+ case "payload":
215
+ msg.update.payload.update(val)
216
case "active":
217
218
key = "is_active"
0 commit comments