Session_id was not correctly stored for chat sessions, and it was defined as an integer iso a UUID in the database
This commit is contained in:
@@ -67,7 +67,7 @@ def ask_question(tenant_id, question, language, session_id, user_timezone, room)
|
||||
'interaction_id': 'interaction_id_value'
|
||||
}
|
||||
"""
|
||||
with BusinessEvent("Ask Question", tenant_id=tenant_id, session_id=session_id):
|
||||
with BusinessEvent("Ask Question", tenant_id=tenant_id, chat_session_id=session_id):
|
||||
current_app.logger.info(f'ask_question: Received question for tenant {tenant_id}: {question}. Processing...')
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user