File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -313,6 +313,10 @@ class TKqpNodeService : public TActorBootstrapped<TKqpNodeService> {
313
313
ActorIdToProto (taskCtx.ComputeActorId , startedTask->MutableActorId ());
314
314
}
315
315
316
+ if (!schedulerGroup.empty ()) {
317
+ Scheduler->AdvanceTime (TlsActivationContext->Monotonic ());
318
+ }
319
+
316
320
TCPULimits cpuLimits;
317
321
if (msg.GetPoolMaxCpuShare () > 0 ) {
318
322
// Share <= 0 means disabled limit
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ class TObservableUpdater {
228
228
template <typename T>
229
229
class TParameter : public IObservableValue <T> {
230
230
public:
231
- TParameter (TObservableUpdater* engine, double initialValue)
231
+ TParameter (TObservableUpdater* engine, T initialValue)
232
232
: Value_(initialValue)
233
233
, Updater_(engine)
234
234
{
You can’t perform that action at this time.
0 commit comments