We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a558d29 commit a2f128fCopy full SHA for a2f128f
vllm/v1/engine/core_client.py
@@ -212,9 +212,9 @@ class BackgroundResources:
212
"""Used as a finalizer for clean shutdown, avoiding
213
circular reference back to the client object."""
214
215
- ctx: Union[zmq.Context] = None
216
- output_socket: Union[zmq.Socket, zmq.asyncio.Socket] = None
217
- input_socket: Union[zmq.Socket, zmq.asyncio.Socket] = None
+ ctx: zmq.Context
+ output_socket: Optional[Union[zmq.Socket, zmq.asyncio.Socket]] = None
+ input_socket: Optional[Union[zmq.Socket, zmq.asyncio.Socket]] = None
218
proc_handle: Optional[BackgroundProcHandle] = None
219
shutdown_path: Optional[str] = None
220
0 commit comments