fix: add missing shutdown methods to PromptServiceImpl and ConversationServiceImpl (#3925)

Change is visible in server shutdown logs, changes `WARNING` loglines to
`INFO`

Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
This commit is contained in:
Nathan Weinberg 2025-10-27 16:41:38 -04:00 committed by GitHub
parent a9b00db421
commit b6954c9882
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -312,3 +312,6 @@ class ConversationServiceImpl(Conversations):
logger.debug(f"Deleted item {item_id} from conversation {conversation_id}")
return ConversationItemDeletedResource(id=item_id)
async def shutdown(self) -> None:
pass

View file

@ -230,3 +230,6 @@ class PromptServiceImpl(Prompts):
await self.kvstore.set(default_key, str(version))
return self._deserialize_prompt(data)
async def shutdown(self) -> None:
pass