Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
e1af3af6
Unverified
Commit
e1af3af6
authored
Nov 11, 2025
by
Graham King
Committed by
GitHub
Nov 11, 2025
Browse files
chore: Remove static mode (#4235)
Signed-off-by:
Graham King
<
grahamk@nvidia.com
>
parent
d9b674b8
Changes
64
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
tests/frontend/grpc/echo_tensor_worker.py
tests/frontend/grpc/echo_tensor_worker.py
+1
-1
tests/planner/unit/test_virtual_connector.py
tests/planner/unit/test_virtual_connector.py
+1
-1
tests/router/test_router_e2e_with_mockers.py
tests/router/test_router_e2e_with_mockers.py
+1
-1
tests/serve/launch/template_verifier.py
tests/serve/launch/template_verifier.py
+1
-1
No files found.
tests/frontend/grpc/echo_tensor_worker.py
View file @
e1af3af6
...
...
@@ -13,7 +13,7 @@ from dynamo.llm import ModelInput, ModelRuntimeConfig, ModelType, register_llm
from
dynamo.runtime
import
DistributedRuntime
,
dynamo_worker
@
dynamo_worker
(
static
=
False
)
@
dynamo_worker
()
async
def
echo_tensor_worker
(
runtime
:
DistributedRuntime
):
component
=
runtime
.
namespace
(
"tensor"
).
component
(
"echo"
)
await
component
.
create_service
()
...
...
tests/planner/unit/test_virtual_connector.py
View file @
e1af3af6
...
...
@@ -31,7 +31,7 @@ def get_runtime():
except
Exception
:
# If no existing runtime, create a new one
loop
=
asyncio
.
get_running_loop
()
_runtime_instance
=
DistributedRuntime
(
loop
,
"etcd"
,
False
)
_runtime_instance
=
DistributedRuntime
(
loop
,
"etcd"
)
return
_runtime_instance
...
...
tests/router/test_router_e2e_with_mockers.py
View file @
e1af3af6
...
...
@@ -226,7 +226,7 @@ def get_runtime():
# No running loop, create a new one (sync context)
loop
=
asyncio
.
new_event_loop
()
asyncio
.
set_event_loop
(
loop
)
_runtime_instance
=
DistributedRuntime
(
loop
,
"etcd"
,
False
)
_runtime_instance
=
DistributedRuntime
(
loop
,
"etcd"
)
return
_runtime_instance
...
...
tests/serve/launch/template_verifier.py
View file @
e1af3af6
...
...
@@ -38,7 +38,7 @@ class TemplateVerificationHandler:
yield
{
"token_ids"
:
response_tokens
}
@
dynamo_worker
(
static
=
False
)
@
dynamo_worker
()
async
def
main
(
runtime
:
DistributedRuntime
):
"""Main worker function for template verification."""
...
...
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment