HDFS-16947. RBF NamenodeHeartbeatService to report error for not being able to register namenode in state store (#5470)

This commit is contained in:
Viraj Jasani 2023-03-15 09:59:55 -07:00 committed by GitHub
parent cf4a678ce9
commit 15935fa865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -317,11 +317,8 @@ private void updateState() {
if (!resolver.registerNamenode(report)) {
LOG.warn("Cannot register namenode {}", report);
}
} catch (IOException e) {
LOG.info("Cannot register namenode in the State Store");
} catch (Exception ex) {
LOG.error("Unhandled exception updating NN registration for {}",
getNamenodeDesc(), ex);
} catch (Exception e) {
LOG.error("Cannot register namenode {} in the State Store", getNamenodeDesc(), e);
}
}