Skip to content

Commit

Permalink
[ISSUE #13038] 修复多个线程同时创建ConnectionManager类的Bean的问题 (#13042)
Browse files Browse the repository at this point in the history
  • Loading branch information
misakacoder authored Jan 15, 2025
1 parent 42a7110 commit 0237ad8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private void initConnectionRule() {
}

private void startConnectionMetricsReport() {
executorService.scheduleWithFixedDelay(new ConnectionMetricsReporter(), 0, 3000, TimeUnit.MILLISECONDS);
executorService.scheduleWithFixedDelay(new ConnectionMetricsReporter(), 3000, 3000, TimeUnit.MILLISECONDS);
}

public ConnectionControlRule getConnectionLimitRule() {
Expand Down

0 comments on commit 0237ad8

Please sign in to comment.