Skip to content
Snippets Groups Projects

WS-833: capability version number in`announce_qa` endpoint

Merged Janet Goldstein requested to merge WS-833-version-in-announce-qa into main
1 unresolved thread
  • announce_qa endpoint sends capability version number

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
580 591
581 def announce_qa(self, workflow_request_id: int, msg_type: str):
592 def announce_qa(self, workflow_request_id: int, msg_type: str, capability_version: int):
582 593 """
583 594 Announce this QA ready/pass/fail event
584 595 :param workflow_request_id: the workflow request ID
585 596 :param msg_type: ready, pass, or fail
586 597 :return:
587 598 """
588 logger.info(f"ANNOUNCING QA {msg_type.upper()} for request #{workflow_request_id}!")
599 logger.info(
600 f"ANNOUNCING QA {msg_type.upper()} for request #{workflow_request_id}, capability version"
601 f" {capability_version}!"
602 )
589 603 wf_request = self.info.lookup_workflow_request(workflow_request_id)
604 wf_request.argument = {"capabilityVersion": capability_version}
  • added 1 commit

    • 141e10fb - message architect change for qa-ing versions

    Compare with previous version

  • Charlotte Hausman approved this merge request

    approved this merge request

  • Daniel Lyons approved this merge request

    approved this merge request

  • Nathan Hertz approved this merge request

    approved this merge request

  • Please register or sign in to reply
    Loading