Skip to content

Commit 019fce1

Browse files
committed
remove unused workflow input
1 parent eae6e9f commit 019fce1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

workflow_task_multiprocessing/starter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ async def main():
3232
wf_handles = [
3333
client.execute_workflow(
3434
ParallelizedWorkflow.run,
35-
"temporal",
3635
id=f"greeting-workflow-id-{uuid.uuid4()}",
3736
task_queue=WORKFLOW_TASK_QUEUE,
3837
)

workflow_task_multiprocessing/workflows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@workflow.defn
1111
class ParallelizedWorkflow:
1212
@workflow.run
13-
async def run(self, input: str) -> str:
13+
async def run(self) -> str:
1414
pid = os.getpid()
1515
activity_result = await workflow.execute_activity(
1616
echo_pid_activity,

0 commit comments

Comments
 (0)