HDDS-139. Output of createVolume can be improved. Contributed by Shweta.

This commit is contained in:
Shweta Yakkali 2019-03-26 19:01:49 -07:00 committed by Arpit Agarwal
parent fe29b3901b
commit f426b7ce8f
No known key found for this signature in database
GPG Key ID: E4B09E903FDF9E98

View File

@ -270,8 +270,12 @@ public void createVolume(String volumeName, VolumeArgs volArgs)
builder.addOzoneAcls(OMPBHelper.convertOzoneAcl(ozoneAcl));
}
LOG.info("Creating Volume: {}, with {} as owner and quota set to {} bytes.",
volumeName, owner, quota);
if (volArgs.getQuota() == null) {
LOG.info("Creating Volume: {}, with {} as owner.", volumeName, owner);
} else {
LOG.info("Creating Volume: {}, with {} as owner "
+ "and quota set to {} bytes.", volumeName, owner, quota);
}
ozoneManagerClient.createVolume(builder.build());
}