Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
bc741073
Unverified
Commit
bc741073
authored
Oct 31, 2025
by
Kindyaa
Committed by
GitHub
Oct 31, 2025
Browse files
fix:watchdog thread exception (#12328)
parent
2f6af1a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
python/sglang/srt/managers/scheduler.py
python/sglang/srt/managers/scheduler.py
+17
-0
No files found.
python/sglang/srt/managers/scheduler.py
View file @
bc741073
...
...
@@ -2330,6 +2330,23 @@ class Scheduler(
f
"
{
swa_available_size
=
}
, "
f
"
{
swa_evictable_size
=
}
, "
)
elif
self
.
is_hybrid_gdn
and
isinstance
(
self
.
tree_cache
,
MambaRadixCache
):
(
_
,
_
,
_
,
_
,
full_available_size
,
full_evictable_size
,
mamba_available_size
,
mamba_evictable_size
,
)
=
self
.
_get_mamba_token_info
()
info_msg
=
(
f
"
{
full_available_size
=
}
, "
f
"
{
full_evictable_size
=
}
, "
f
"
{
mamba_available_size
=
}
, "
f
"
{
mamba_evictable_size
=
}
, "
)
else
:
_
,
_
,
available_size
,
evictable_size
=
self
.
_get_token_info
()
info_msg
=
f
"
{
available_size
=
}
, "
f
"
{
evictable_size
=
}
, "
...
...
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