Upload files to "expected_workflows"
This commit is contained in:
parent
96c7b9f8cf
commit
c991553d5c
@ -16,7 +16,6 @@ logger = logging.getLogger(__name__)
|
||||
class test_repo_test_branch:
|
||||
@temporalio.workflow.run
|
||||
async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]:
|
||||
await temporalio.workflow.sleep(0)
|
||||
workflow_info = temporalio.workflow.info()
|
||||
workflow_output: Dict[str, Any] = {
|
||||
"workflow_id": workflow_info.workflow_id,
|
||||
@ -242,7 +241,6 @@ class test_repo_test_branch:
|
||||
if isinstance(result, Exception):
|
||||
logger.error(f"Task failed with exception: {result}")
|
||||
workflow_output["status"] = "failed"
|
||||
await temporalio.workflow.sleep(0)
|
||||
# Execution step 2
|
||||
tasks = [task_functions[node_id]() for node_id in ['m3aiq7ixuo6du35h8tr', 'm3aiqkrv4k1y6654ymr']]
|
||||
results_step = await asyncio.gather(*tasks, return_exceptions=True)
|
||||
@ -250,7 +248,6 @@ class test_repo_test_branch:
|
||||
if isinstance(result, Exception):
|
||||
logger.error(f"Task failed with exception: {result}")
|
||||
workflow_output["status"] = "failed"
|
||||
await temporalio.workflow.sleep(0)
|
||||
|
||||
# Update workflow status to completed if not failed
|
||||
if workflow_output["status"] != "failed":
|
||||
|
||||
@ -16,7 +16,6 @@ logger = logging.getLogger(__name__)
|
||||
class test_repo_test_branch:
|
||||
@temporalio.workflow.run
|
||||
async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]:
|
||||
await temporalio.workflow.sleep(0)
|
||||
workflow_info = temporalio.workflow.info()
|
||||
workflow_output: Dict[str, Any] = {
|
||||
"workflow_id": workflow_info.workflow_id,
|
||||
@ -240,7 +239,6 @@ class test_repo_test_branch:
|
||||
if isinstance(result, Exception):
|
||||
logger.error(f"Task failed with exception: {result}")
|
||||
workflow_output["status"] = "failed"
|
||||
await temporalio.workflow.sleep(0)
|
||||
|
||||
# Update workflow status to completed if not failed
|
||||
if workflow_output["status"] != "failed":
|
||||
|
||||
@ -16,7 +16,6 @@ logger = logging.getLogger(__name__)
|
||||
class test_repo_test_branch:
|
||||
@temporalio.workflow.run
|
||||
async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]:
|
||||
await temporalio.workflow.sleep(0)
|
||||
workflow_info = temporalio.workflow.info()
|
||||
workflow_output: Dict[str, Any] = {
|
||||
"workflow_id": workflow_info.workflow_id,
|
||||
@ -242,7 +241,6 @@ class test_repo_test_branch:
|
||||
if isinstance(result, Exception):
|
||||
logger.error(f"Task failed with exception: {result}")
|
||||
workflow_output["status"] = "failed"
|
||||
await temporalio.workflow.sleep(0)
|
||||
# Execution step 2
|
||||
tasks = [task_functions[node_id]() for node_id in ['m3aiq7ixuo6du35h8tr']]
|
||||
results_step = await asyncio.gather(*tasks, return_exceptions=True)
|
||||
@ -250,7 +248,6 @@ class test_repo_test_branch:
|
||||
if isinstance(result, Exception):
|
||||
logger.error(f"Task failed with exception: {result}")
|
||||
workflow_output["status"] = "failed"
|
||||
await temporalio.workflow.sleep(0)
|
||||
# Execution step 3
|
||||
tasks = [task_functions[node_id]() for node_id in ['m3aiqkrv4k1y6654ymr']]
|
||||
results_step = await asyncio.gather(*tasks, return_exceptions=True)
|
||||
@ -258,7 +255,6 @@ class test_repo_test_branch:
|
||||
if isinstance(result, Exception):
|
||||
logger.error(f"Task failed with exception: {result}")
|
||||
workflow_output["status"] = "failed"
|
||||
await temporalio.workflow.sleep(0)
|
||||
|
||||
# Update workflow status to completed if not failed
|
||||
if workflow_output["status"] != "failed":
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user