This is an automated email from the ASF dual-hosted git repository. preetham02 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/asterixdb.git
commit dbdda9f3fa164748f581439a73226f696cdc3ecb Author: Michael Blow <[email protected]> AuthorDate: Sat Jun 28 13:11:55 2025 -0400 [NO ISSUE][*DB][STO] Return null from readAllBytes() in no-op client Ext-ref: MB-65877 Change-Id: I9642b1d32beb4ab93b0914a20c38ad1476abbab0 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/20006 Reviewed-by: Michael Blow <[email protected]> Reviewed-by: Murtadha Hubail <[email protected]> Integration-Tests: Jenkins <[email protected]> Tested-by: Michael Blow <[email protected]> Contrib: Michael Blow <[email protected]> --- .../src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java b/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java index 8f37191b44..45dabeb221 100644 --- a/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java +++ b/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java @@ -76,7 +76,7 @@ public class NoopCloudClient implements ICloudClient { @Override public byte[] readAllBytes(String bucket, String path) throws HyracksDataException { - return new byte[0]; + return null; } @Override
