This is an automated email from the ASF dual-hosted git repository.

wyk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git


The following commit(s) were added to refs/heads/master by this push:
     new d9dce19e19 [NO ISSUE]: Print partitions count alongside the partitions 
list
d9dce19e19 is described below

commit d9dce19e19186405c93f8a1b93bc59c8f12b3f51
Author: Hussain Towaileb <[email protected]>
AuthorDate: Mon Jun 3 07:35:33 2024 +0300

    [NO ISSUE]: Print partitions count alongside the partitions list
    
    Change-Id: I5c0c12e03119151d797cf46bde7d9824a9ce27d7
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18336
    Integration-Tests: Jenkins <[email protected]>
    Reviewed-by: Hussain Towaileb <[email protected]>
    Reviewed-by: Murtadha Hubail <[email protected]>
    Tested-by: Hussain Towaileb <[email protected]>
---
 .../src/main/java/org/apache/asterix/cloud/AbstractCloudIOManager.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/AbstractCloudIOManager.java
 
b/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/AbstractCloudIOManager.java
index 175a061bf1..4ca9f592b5 100644
--- 
a/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/AbstractCloudIOManager.java
+++ 
b/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/AbstractCloudIOManager.java
@@ -122,7 +122,7 @@ public abstract class AbstractCloudIOManager extends 
IOManager implements IParti
             partitionPaths.add(resolve(STORAGE_ROOT_DIR_NAME + File.separator 
+ partitionDir));
         }
 
-        LOGGER.warn("Initializing cloud manager with storage partitions: {}", 
partitions);
+        LOGGER.warn("Initializing cloud manager with ({}) storage partitions: 
{}", partitions.size(), partitions);
 
         if (cleanup) {
             deleteUnkeptPartitionDirs(currentOnDiskPartitions);

Reply via email to