Skip to content

Commit

Permalink
Made an addition to handle date constants in predicates. Generally, n…
Browse files Browse the repository at this point in the history
…eed to rethink date handling.
  • Loading branch information
kenstott committed Oct 11, 2024
1 parent e5b47f2 commit b9d54d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ public String queryModels(String query, String parentTraceId, String parentSpanI
span.setStatus(StatusCode.OK);
return result;
}
} catch (Exception e) {
} catch (Throwable e) {
span.setStatus(StatusCode.ERROR);
span.setAttribute("Error", e.toString());
return "{\"error\":\"" + e + "\"}";
Expand Down

0 comments on commit b9d54d4

Please sign in to comment.