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
96cc0698
"vscode:/vscode.git/clone" did not exist on "bd28e442b1cb291f7ee6019b4b67731463f2fde7"
Unverified
Commit
96cc0698
authored
Jun 27, 2025
by
richardhuo-nv
Committed by
GitHub
Jun 27, 2025
Browse files
fix: fix the if statement for checking tllm_disagg_params.opaque_state is none (#1679)
parent
c7c3d0ed
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/tensorrt_llm/common/protocol.py
examples/tensorrt_llm/common/protocol.py
+1
-1
No files found.
examples/tensorrt_llm/common/protocol.py
View file @
96cc0698
...
...
@@ -57,7 +57,7 @@ class DisaggregatedTypeConverter:
else
:
encoded_opaque_state
=
(
base64
.
b64encode
(
tllm_disagg_params
.
opaque_state
).
decode
(
"utf-8"
)
if
tllm_disagg_params
is
not
None
if
tllm_disagg_params
.
opaque_state
is
not
None
else
None
)
return
DisaggregatedParams
(
...
...
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