Skip to content

Commit 453d412

Browse files
authored
Tiny update error hint (#5037)
1 parent dc86f25 commit 453d412

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/sglang/test/test_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,9 @@ def popen_launch_server(
450450

451451
return_code = process.poll()
452452
if return_code is not None:
453-
raise Exception(f"Server unexpectedly exits ({return_code=}).")
453+
raise Exception(
454+
f"Server unexpectedly exits ({return_code=}). Usually there will be error logs describing the cause far above this line."
455+
)
454456

455457
time.sleep(10)
456458

0 commit comments

Comments
 (0)