HDDS-673. Suppress "Key not found" exception log with stack trace in OM. Contributed by Arpit Agarwal.
This commit is contained in:
parent
780be14f07
commit
c64018026e
@ -370,7 +370,7 @@ public OmKeyInfo lookupKey(OmKeyArgs args) throws IOException {
|
|||||||
}
|
}
|
||||||
return OmKeyInfo.getFromProtobuf(KeyInfo.parseFrom(value));
|
return OmKeyInfo.getFromProtobuf(KeyInfo.parseFrom(value));
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
LOG.error("Get key failed for volume:{} bucket:{} key:{}",
|
LOG.debug("Get key failed for volume:{} bucket:{} key:{}",
|
||||||
volumeName, bucketName, keyName, ex);
|
volumeName, bucketName, keyName, ex);
|
||||||
throw new OMException(ex.getMessage(),
|
throw new OMException(ex.getMessage(),
|
||||||
OMException.ResultCodes.FAILED_KEY_NOT_FOUND);
|
OMException.ResultCodes.FAILED_KEY_NOT_FOUND);
|
||||||
|
Loading…
Reference in New Issue
Block a user