File tree 2 files changed +2
-2
lines changed
row_dispatcher/purecalc_compilation
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ message TJsonParserConfig {
26
26
}
27
27
28
28
message TCompileServiceConfig {
29
- uint64 ParallelCompilationLimit = 1 ; // 1 by default, 0 <=> unlimited
29
+ uint64 ParallelCompilationLimit = 1 ; // 1 by default
30
30
}
31
31
32
32
message TRowDispatcherConfig {
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ class TPurecalcCompileService : public NActors::TActor<TPurecalcCompileService>
111
111
TPurecalcCompileService (const NConfig::TCompileServiceConfig& config, NMonitoring::TDynamicCounterPtr counters)
112
112
: TBase(&TPurecalcCompileService::StateFunc)
113
113
, Config(config)
114
- , InFlightLimit(Config.GetParallelCompilationLimit() ? Config.GetParallelCompilationLimit() : std::numeric_limits<ui64>::max() )
114
+ , InFlightLimit(Config.GetParallelCompilationLimit() ? Config.GetParallelCompilationLimit() : 1 )
115
115
, LogPrefix(" TPurecalcCompileService: " )
116
116
, Counters(counters)
117
117
{}
You can’t perform that action at this time.
0 commit comments