From b38b8c1f7f661132eba52d5cb6537f2143636886 Mon Sep 17 00:00:00 2001 From: tegwick Date: Thu, 9 Jul 2026 00:32:54 +0200 Subject: [PATCH] Send workplan_id only on State Hub progress metadata posts --- scripts/credential.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/credential.py b/scripts/credential.py index c69e3d1..56cb82c 100755 --- a/scripts/credential.py +++ b/scripts/credential.py @@ -398,7 +398,6 @@ def record_state_hub(args: argparse.Namespace, metadata: dict[str, Any]) -> None scope_id = getattr(args, "state_hub_workplan_id", None) or args.state_hub_workstream_id if scope_id: payload["workplan_id"] = scope_id - payload["workstream_id"] = scope_id try: post_json(url, payload, timeout=args.http_timeout) except Exception as exc: # noqa: BLE001