seropian commented on code in PR #2330: URL: https://github.com/apache/jackrabbit-oak/pull/2330#discussion_r2227843832
########## oak-blob-cloud-azure/src/test/java/org/apache/jackrabbit/oak/blob/cloud/azure/blobstorage/AzureDataRecordAccessProviderTest.java: ########## @@ -93,19 +97,19 @@ protected void doDeleteRecord(DataStore ds, DataIdentifier identifier) throws Da @Override protected long getProviderMinPartSize() { - return Math.max(0L, AzureBlobStoreBackend.MIN_MULTIPART_UPLOAD_PART_SIZE); + return Math.max(0L, MIN_MULTIPART_UPLOAD_PART_SIZE); Review Comment: I have move all constants from the newly created "Constants" to the already existing AzureConstants to simplify ########## oak-blob-cloud-azure/src/test/java/org/apache/jackrabbit/oak/blob/cloud/azure/blobstorage/AzureDataRecordAccessProviderTest.java: ########## @@ -93,19 +97,19 @@ protected void doDeleteRecord(DataStore ds, DataIdentifier identifier) throws Da @Override protected long getProviderMinPartSize() { - return Math.max(0L, AzureBlobStoreBackend.MIN_MULTIPART_UPLOAD_PART_SIZE); + return Math.max(0L, MIN_MULTIPART_UPLOAD_PART_SIZE); Review Comment: I have moved all constants from the newly created "Constants" to the already existing AzureConstants to simplify -- 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: oak-dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org