We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 212f846 commit f3f3dccCopy full SHA for f3f3dcc
1 file changed
hello_nexus/caller/app.py
@@ -3,7 +3,7 @@
3
from typing import Optional
4
5
from temporalio.client import Client
6
-from temporalio.worker import UnsandboxedWorkflowRunner, Worker
+from temporalio.worker import Worker
7
8
from hello_nexus.caller.workflows import CallerWorkflow
9
from hello_nexus.service import MyOutput
@@ -24,9 +24,6 @@ async def execute_caller_workflow(
24
client,
25
task_queue=TASK_QUEUE,
26
workflows=[CallerWorkflow],
27
- # TODO(dan): isinstance(op, nexusrpc.contract.Operation) is failing under the
28
- # sandbox in temporalio/worker/_interceptor.py
29
- workflow_runner=UnsandboxedWorkflowRunner(),
30
):
31
return await client.execute_workflow(
32
CallerWorkflow.run,
0 commit comments