Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ private void observeSyncStream() throws InterruptedException {

metadataResponse = localStub.getMetadata(metadataRequest.build());
} catch (Exception metaEx) {
log.error("Metadata exception: {}, cancelling stream", metaEx.getMessage(), metaEx);
// cancel the stream if the getMetadata fails, but we can keep this log quiet since the stream is cancelled/restarted with this exception
log.debug("Metadata exception: {}, cancelling stream", metaEx.getMessage(), metaEx);
context.cancel(metaEx);
}
}
Expand Down
Loading