SilverNarcissus commented on a change in pull request #2405:
URL: https://github.com/apache/iotdb/pull/2405#discussion_r558040054



##########
File path: 
server/src/main/java/org/apache/iotdb/db/engine/storagegroup/StorageGroupProcessor.java
##########
@@ -365,18 +365,18 @@ private void recover() throws 
StorageGroupProcessorException {
   private void recoverCompaction() {
     if (!CompactionMergeTaskPoolManager.getInstance().isTerminated()) {
       compactionMergeWorking = true;
-      logger.info("{} submit a compaction merge task", 
virtualstorageGroupName);
+      logger.info("{} submit a compaction merge task", virtualstorageGroupId);
       try {
         CompactionMergeTaskPoolManager.getInstance()
             .submitTask(
                 tsFileManagement.new 
CompactionRecoverTask(this::closeCompactionMergeCallBack));
       } catch (RejectedExecutionException e) {
         this.closeCompactionMergeCallBack();
-        logger.error("{} compaction submit task failed", 
virtualstorageGroupName);
+        logger.error("{} compaction submit task failed", 
virtualstorageGroupId);
       }
     } else {
       logger.error("{} compaction pool not started ,recover failed",
-          virtualstorageGroupName);
+          virtualstorageGroupId);

Review comment:
       Sure, I have fixed all the logs~




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to