Skip to content

Commit

Permalink
fix: revert incorrect merging
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav274 committed May 25, 2023
1 parent c4e9adc commit 016111e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eva/server/command_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ async def handle_request(client_writer, request_message):
try:
output_batch = execute_query_fetch_all(request_message)
except Exception as e:
logger.exception(str(e))
error_msg = str(e)
logger.exception(error_msg)
error = True

if not error:
Expand Down

0 comments on commit 016111e

Please sign in to comment.