From 1cdbf062ffcbf80525f5fcf3997346ae444bdcd3 Mon Sep 17 00:00:00 2001 From: Jiri Spilka Date: Mon, 17 Feb 2025 09:02:28 +0100 Subject: [PATCH] Change status message --- CHANGELOG.md | 2 +- src/main.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f4f11..38ea730 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ This changelog summarizes all changes of the RAG Web Browser -### 0.0.8 (2025-02-12) +### 0.1.0 (2025-02-17) 🚀 Features - Dataset query engine implementation diff --git a/src/main.py b/src/main.py index a9df808..86081b5 100644 --- a/src/main.py +++ b/src/main.py @@ -148,9 +148,7 @@ async def main() -> None: actor_input = await check_inputs(actor_input, payload) await process_query(actor_input) except Exception as e: - msg = f'Failed to process query, error {e}' - logger.exception(msg) - await Actor.fail(status_message=msg) + await Actor.fail(status_message='Failed to process query', exception=e) if __name__ == '__main__':