Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wangbo committed Nov 1, 2024
1 parent 76950e8 commit 99e4e7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
Original file line number Diff line number Diff line change
Expand Up @@ -1845,7 +1845,9 @@ protected void startMasterOnlyDaemonThreads() {
WorkloadSchedPolicyPublisher wpPublisher = new WorkloadSchedPolicyPublisher(this);
topicPublisherThread.addToTopicPublisherList(wpPublisher);
topicPublisherThread.start();
new CreateInternalWorkloadGroupThread().start();
if (!FeConstants.runningUnitTest) {
new CreateInternalWorkloadGroupThread().start();
}

// auto analyze related threads.
statisticsCleaner.start();
Expand Down

0 comments on commit 99e4e7f

Please sign in to comment.