We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20722ef commit e67474dCopy full SHA for e67474d
1 file changed
nexus_sync_operations/handler/service_handler.py
@@ -69,7 +69,9 @@ async def get_language(
69
return await self.greeting_workflow_handle.query(GreetingWorkflow.get_language)
70
71
# 👉 This is a handler for a nexus operation whose internal implementation involves executing an
72
- # update against a long-running workflow that is private to the nexus service.
+ # update against a long-running workflow that is private to the nexus service. Although updates
73
+ # can run for an arbitrarily long time, when exposing an update via a nexus sync operation the
74
+ # update should execute quickly (sync operations must complete in under 10s).
75
@nexusrpc.handler.sync_operation
76
async def set_language(
77
self,
0 commit comments