sumitagrawl commented on code in PR #6068:
URL: https://github.com/apache/ozone/pull/6068#discussion_r1463228884
##########
hadoop-ozone/interface-storage/src/main/java/org/apache/hadoop/ozone/om/helpers/OmPrefixInfo.java:
##########
@@ -184,7 +184,7 @@ public static OmPrefixInfo
getFromProtobuf(PersistedPrefixInfo prefixInfo) {
.getFromProtobuf(prefixInfo.getMetadataList()));
}
if (prefixInfo.getAclsList() != null) {
- opib.setAcls(OzoneAclStorageUtil.fromProtobuf(prefixInfo.getAclsList()));
+ opib.setAcls(OzoneAclUtil.fromProtobuf(prefixInfo.getAclsList()));
Review Comment:
There is a change in Class name hierarcy for OzoneAclInfo from
OzoneManagerStorageProtos --> OzoneManagerProtocolProtos
and Om.StorageProtocol.proto used for content saved in rocksdb for
encode/decode.
Please check if this have any `compatibility issue`, i.e. before upgrade,
having encoded with old way in db, and after upgrade, it should able to retrive
same information from db with the change.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]