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
24a935e5
Unverified
Commit
24a935e5
authored
Aug 15, 2025
by
Keiven C
Committed by
GitHub
Aug 15, 2025
Browse files
fix: remove add_labels in Component (#2458)
parent
72128596
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
components/backends/vllm/src/dynamo/vllm/main.py
components/backends/vllm/src/dynamo/vllm/main.py
+2
-10
No files found.
components/backends/vllm/src/dynamo/vllm/main.py
View file @
24a935e5
...
@@ -133,11 +133,7 @@ async def init_prefill(runtime: DistributedRuntime, config: Config):
...
@@ -133,11 +133,7 @@ async def init_prefill(runtime: DistributedRuntime, config: Config):
Instantiate and serve
Instantiate and serve
"""
"""
component
=
(
component
=
runtime
.
namespace
(
config
.
namespace
).
component
(
config
.
component
)
runtime
.
namespace
(
config
.
namespace
)
.
component
(
config
.
component
)
.
add_labels
([(
"model"
,
config
.
model
)])
)
await
component
.
create_service
()
await
component
.
create_service
()
generate_endpoint
=
component
.
endpoint
(
config
.
endpoint
)
generate_endpoint
=
component
.
endpoint
(
config
.
endpoint
)
...
@@ -170,11 +166,7 @@ async def init(runtime: DistributedRuntime, config: Config):
...
@@ -170,11 +166,7 @@ async def init(runtime: DistributedRuntime, config: Config):
Instantiate and serve
Instantiate and serve
"""
"""
component
=
(
component
=
runtime
.
namespace
(
config
.
namespace
).
component
(
config
.
component
)
runtime
.
namespace
(
config
.
namespace
)
.
component
(
config
.
component
)
.
add_labels
([(
"model"
,
config
.
model
)])
)
await
component
.
create_service
()
await
component
.
create_service
()
generate_endpoint
=
component
.
endpoint
(
config
.
endpoint
)
generate_endpoint
=
component
.
endpoint
(
config
.
endpoint
)
...
...
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