Update expected_workflows/flow_hybrid_expected.py
Some checks failed
CI Workflow / Containerize the Flow (push) Has been cancelled
CI Workflow / Testing the Flow (push) Has been cancelled

This commit is contained in:
admin user 2025-03-25 20:58:25 +00:00
parent 263b98a48b
commit 59b89cdafc

View File

@ -13,14 +13,14 @@ logging.basicConfig(level=logging.INFO,
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
@temporalio.workflow.defn @temporalio.workflow.defn
class test_repo_test_branch_1234567890: class test_repo_test_branch:
@temporalio.workflow.run @temporalio.workflow.run
async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]: async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]:
workflow_info = temporalio.workflow.info() workflow_info = temporalio.workflow.info()
workflow_output: Dict[str, Any] = { workflow_output: Dict[str, Any] = {
"workflow_id": workflow_info.workflow_id, "workflow_id": workflow_info.workflow_id,
"run_id": workflow_info.run_id, "run_id": workflow_info.run_id,
"name": "test_repo_test_branch_1234567890", "name": "test_repo_test_branch",
"status": "in_progress", "status": "in_progress",
"blocks": [], "blocks": [],
"root_input": root_inputs "root_input": root_inputs