HDDS-1428. Remove benign warning in handleCreateContainer. Contributed by Siddharth Wagle.

This commit is contained in:
Arpit Agarwal 2019-04-12 15:08:01 -07:00
parent 0c1fec34f4
commit 62f4808617
No known key found for this signature in database
GPG Key ID: E4B09E903FDF9E98

View File

@ -251,7 +251,7 @@ ContainerCommandResponseProto handleCreateContainer(
// The create container request for an already existing container can
// arrive in case the ContainerStateMachine reapplies the transaction
// on datanode restart. Just log a warning msg here.
LOG.warn("Container already exists." +
LOG.debug("Container already exists." +
"container Id " + containerID);
}
} catch (StorageContainerException ex) {