Skip to content
Open
Changes from all 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 @@ -285,7 +285,7 @@ public void updateMetadata(
}
LOG.warn("Failed to update metadata, but the exception is re-triable.", t);
} else if (t instanceof PartitionNotExistException) {
LOG.warn("Failed to update metadata because the partition does not exist", t);
LOG.debug("Failed to update metadata because the partition does not exist", t);
throw (PartitionNotExistException) t;
} else {
throw new FlussRuntimeException("Failed to update metadata", t);
Expand Down
Loading