Skip to content

Commit 4fcefde

Browse files
committed
fix(logging): correct 'Converastion' typo in conversations_v2
Signed-off-by: Major Hayden <major@redhat.com>
1 parent 227e504 commit 4fcefde

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/endpoints/conversations_v2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async def get_conversations_list_endpoint_handler(
9797
skip_userid_check = auth[2]
9898

9999
if configuration.conversation_cache_configuration.type is None:
100-
logger.warning("Converastion cache is not configured")
100+
logger.warning("Conversation cache is not configured")
101101
response = InternalServerErrorResponse.cache_unavailable()
102102
raise HTTPException(**response.model_dump())
103103

@@ -124,7 +124,7 @@ async def get_conversation_endpoint_handler(
124124
skip_userid_check = auth[2]
125125

126126
if configuration.conversation_cache_configuration.type is None:
127-
logger.warning("Converastion cache is not configured")
127+
logger.warning("Conversation cache is not configured")
128128
response = InternalServerErrorResponse.cache_unavailable()
129129
raise HTTPException(**response.model_dump())
130130

@@ -162,7 +162,7 @@ async def delete_conversation_endpoint_handler(
162162
skip_userid_check = auth[2]
163163

164164
if configuration.conversation_cache_configuration.type is None:
165-
logger.warning("Converastion cache is not configured")
165+
logger.warning("Conversation cache is not configured")
166166
response = InternalServerErrorResponse.cache_unavailable()
167167
raise HTTPException(**response.model_dump())
168168

0 commit comments

Comments
 (0)