mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-01-04 17:40:55 +08:00
[bugfix] fix syntax warning caused by backslash (#21251)
This commit is contained in:
parent
9499e26e2a
commit
7ba34b1241
@ -54,7 +54,7 @@ def main():
|
||||
for output in outputs:
|
||||
prompt = output.prompt
|
||||
generated_text = output.outputs[0].text
|
||||
print(f"Prompt: {prompt!r}, \n\n\n\ Generated text: {generated_text!r}")
|
||||
print(f"Prompt: {prompt!r}, \n\n\n Generated text: {generated_text!r}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@ -341,7 +341,7 @@ def test_abort_timeout_on_prefiller(monkeypatch, distributed_executor_backend):
|
||||
Test lifecycle of an aborted Remote Prefill request hitting the timeout.
|
||||
-----> P
|
||||
| {process request}
|
||||
<-\--- | {result is NOT delivered, eg proxy is down}
|
||||
<-/--- | {result is NOT delivered, eg proxy is down}
|
||||
|
|
||||
|
|
||||
| {eventually free blocks}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user