YARN-11516. Improve FederationStateStoreFacade#existsApplicationHomeSubCluster/existsReservationHomeSubCluster Log Level. (#5755)
This commit is contained in:
parent
35d77a6359
commit
3d2cddd235
@ -806,7 +806,7 @@ public boolean existsApplicationHomeSubCluster(ApplicationId applicationId) {
|
||||
return true;
|
||||
}
|
||||
} catch (YarnException e) {
|
||||
LOG.warn("get homeSubCluster by applicationId = {} error.", applicationId, e);
|
||||
LOG.debug("get homeSubCluster by applicationId = {} error.", applicationId, e);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@ -893,7 +893,7 @@ public boolean existsReservationHomeSubCluster(ReservationId reservationId) {
|
||||
return true;
|
||||
}
|
||||
} catch (YarnException e) {
|
||||
LOG.warn("get homeSubCluster by reservationId = {} error.", reservationId, e);
|
||||
LOG.debug("get homeSubCluster by reservationId = {} error.", reservationId, e);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user