Skip to content
Snippets Groups Projects
Unverified Commit 8cd877ec authored by github-automation-metabase's avatar github-automation-metabase Committed by GitHub
Browse files

Avoid logging stacktrace in streaming (#51053) (#51094)


* Avoid logging trace

* Demote log to warning

Co-authored-by: default avatarlbrdnk <lbrdnk@users.noreply.github.com>
parent 3837ed89
No related branches found
No related tags found
No related merge requests found
......@@ -151,8 +151,8 @@
(log/debug "Finished writing results; closing results writer.")
(try
(qp.si/finish! results-writer result)
(catch EofException e
(log/error e "Client closed connection prematurely")))
(catch EofException _e
(log/warn "Client closed connection prematurely")))
(u/ignore-exceptions
(.flush os)
(.close os)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment