File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
multi-stage-query/src/main/java/org/apache/druid/msq/indexing Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -730,23 +730,23 @@ private static TaskStatus runSubtasks(
730730 }
731731 try {
732732 if (task .isReady (toolbox .getTaskActionClient ())) {
733- log .info ("Running MSQControllerTask[%d]: %s" , taskCnt , json );
733+ log .info ("Running MSQControllerTask number [%d]: %s" , taskCnt , json );
734734 final TaskStatus taskStatus = task .run (toolbox );
735735 if (!taskStatus .isSuccess ()) {
736736 failCnt ++;
737- log .warn ("Failed to run MSQControllerTask[%d]: %s" , taskCnt , taskStatus .getErrorMsg ());
737+ log .warn ("Failed to run MSQControllerTask number [%d]: %s" , taskCnt , taskStatus .getErrorMsg ());
738738 if (firstFailure == null ) {
739739 firstFailure = taskStatus ;
740740 }
741741 }
742742 } else {
743743 failCnt ++;
744- log .warn ("MSQControllerTask[%d] is not ready." , taskCnt );
744+ log .warn ("MSQControllerTask number [%d] is not ready." , taskCnt );
745745 }
746746 }
747747 catch (Exception e ) {
748748 failCnt ++;
749- log .warn (e , "Failed to run MSQControllerTask[%d]." , taskCnt );
749+ log .warn (e , "Failed to run MSQControllerTask number [%d]." , taskCnt );
750750 }
751751 }
752752
You can’t perform that action at this time.
0 commit comments