Remove unneeded pydoc

This commit is contained in:
Fred Reiss 2025-02-15 17:23:37 -08:00 committed by Ashwin Bharambe
parent 258d4c0b0f
commit b3fbf1e18c

View file

@ -228,10 +228,6 @@ class VLLMInferenceImpl(Inference, ModelsProtocolPrivate):
pass pass
async def shutdown(self) -> None: async def shutdown(self) -> None:
"""
Callback that apparently is invoked when shutting down the Llama Stack server. Not sure how
to shut down a Llama Stack server in such a way as to trigger this callback.
"""
logger.info(f"Shutting down inline vLLM inference provider {self}.") logger.info(f"Shutting down inline vLLM inference provider {self}.")
if self.engine is not None: if self.engine is not None:
self.engine.shutdown_background_loop() self.engine.shutdown_background_loop()