Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Removes orphaned topics from transient queries #6714

Merged
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Almog Gavra <almog@confluent.io>
  • Loading branch information
AlanConfluent and agavra committed Dec 9, 2020
commit 4c89d54c78e11a59a640dd7dbb29de933102bba9
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void write(final TransientQueryMetadata queryMetadata) {
} catch (IOException e) {
// Just log an error since not catching it would likely cause more cleanup work than this
// aims to fix.
LOG.error("Failed to write local command", e);
LOG.error("Failed to write local command for transient query:" + queryMetadata.getQueryApplicationId(), e);
}
}

Expand Down