WS-833: capability version number in`announce_qa` endpoint
1 unresolved thread
1 unresolved thread
-
announce_qa
endpoint sends capability version number
Merge request reports
Activity
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} changed this line in version 2 of the diff
added 1 commit
- 141e10fb - message architect change for qa-ing versions
Please register or sign in to reply