[fix](nereids) Disable auto analyze temporarily #21919

This commit is contained in:
AKIRA
2023-07-19 09:27:24 +08:00
committed by GitHub
parent e0705f1149
commit d349c955f0
2 changed files with 7 additions and 7 deletions

View File

@ -67,12 +67,12 @@ public class StatisticsAutoAnalyzer extends MasterDaemon {
return;
}
if (!Config.enable_full_auto_analyze) {
analyzePeriodically();
analyzeAutomatically();
} else {
analyzeAll();
}
// if (!Config.enable_full_auto_analyze) {
// analyzePeriodically();
// analyzeAutomatically();
// } else {
// analyzeAll();
// }
}
@SuppressWarnings({"rawtypes", "unchecked"})