Skip to content

Commit 41fa63f

Browse files
committed
Delete references to unimplemented hello3 operation
1 parent 22e55b1 commit 41fa63f

2 files changed

Lines changed: 0 additions & 13 deletions

File tree

hello_nexus/caller/workflows_via_interface.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,3 @@ async def run(self, name: str) -> HelloOutput:
9191
HelloInput(name),
9292
)
9393
return await handle
94-
95-
96-
@workflow.defn
97-
class Hello3CallerWorkflow(CallerWorkflowBase):
98-
@xray.start_as_current_workflow_method_span()
99-
@workflow.run
100-
async def run(self, name: str) -> HelloOutput:
101-
handle = await self.nexus_client.start_operation(
102-
MyNexusService.hello3,
103-
HelloInput(name),
104-
)
105-
return await handle

hello_nexus/service/interface.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ class MyNexusService:
3232
echo2: nexusrpc.interface.Operation[EchoInput, EchoOutput]
3333
hello2: nexusrpc.interface.Operation[HelloInput, HelloOutput]
3434
echo3: nexusrpc.interface.Operation[EchoInput, EchoOutput]
35-
hello3: nexusrpc.interface.Operation[HelloInput, HelloOutput]

0 commit comments

Comments
 (0)