Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
yihua committed Sep 13, 2022
1 parent b409296 commit e4facd5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -492,10 +492,10 @@ private boolean checkMetadataTableIsAvailable() {
return true;
} catch (TableNotFoundException tbe) {
// Suppress the TableNotFound exception if Metadata table is not available to read for now
LOG.warn("Meta data table is not found. Skip current validation.");
LOG.warn("Metadata table is not found. Skip current validation.");
return false;
} catch (Exception ex) {
LOG.warn("Metadata table is not available to ready for now, ", ex);
LOG.warn("Metadata table is not available to read for now, ", ex);
return false;
}
}
Expand Down

0 comments on commit e4facd5

Please sign in to comment.