fix: add missing shutdown methods to PromptServiceImpl and ConversationServiceImpl

Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
This commit is contained in:
Nathan Weinberg 2025-10-27 16:32:54 -04:00
parent a9b00db421
commit 42db943ef0
No known key found for this signature in database
GPG key ID: EA1297AE151D9494
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}") logger.debug(f"Deleted item {item_id} from conversation {conversation_id}")
return ConversationItemDeletedResource(id=item_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)) await self.kvstore.set(default_key, str(version))
return self._deserialize_prompt(data) return self._deserialize_prompt(data)
async def shutdown(self) -> None:
pass