@@ -239,7 +239,7 @@ void TCms::ProcessInitQueue(const TActorContext &ctx)
239239
240240void TCms::SubscribeForConfig (const TActorContext &ctx)
241241{
242- NConsole::SubscribeViaConfigDispatcher (ctx, {(ui32)NKikimrConsole::TConfigItem::CmsConfigItem,
242+ NConsole::SubscribeViaConfigDispatcher (ctx, {(ui32)NKikimrConsole::TConfigItem::CmsConfigItem,
243243 (ui32)NKikimrConsole::TConfigItem::FeatureFlagsItem}, ctx.SelfID );
244244}
245245
@@ -1159,6 +1159,7 @@ void TCms::AddHostState(const TClusterInfoPtr &clusterInfo, const TNodeInfo &nod
11591159 host->SetNodeId (node.NodeId );
11601160 host->SetInterconnectPort (node.IcPort );
11611161 host->SetTimestamp (timestamp.GetValue ());
1162+ host->SetStartTimeSeconds (node.StartTime .Seconds ());
11621163 node.Location .Serialize (host->MutableLocation (), false );
11631164 for (auto marker : node.Markers ) {
11641165 host->AddMarkers (marker);
@@ -1982,7 +1983,7 @@ void TCms::Handle(TEvCms::TEvCheckRequest::TPtr &ev, const TActorContext &ctx)
19821983 resp->Record .SetRequestId (scheduled.RequestId );
19831984
19841985 ClusterInfo->ScheduleActions (scheduled, &ctx);
1985-
1986+
19861987 copy = new TRequestInfo (scheduled);
19871988 State->ScheduledRequests .emplace (rec.GetRequestId (), std::move (scheduled));
19881989 } else {
@@ -2265,7 +2266,7 @@ void TCms::Handle(TEvCms::TEvGetSentinelStateRequest::TPtr &ev, const TActorCont
22652266
22662267void TCms::Handle (TEvConsole::TEvConfigNotificationRequest::TPtr &ev,
22672268 const TActorContext &ctx)
2268- {
2269+ {
22692270 const auto & appConfig = ev->Get ()->Record .GetConfig ();
22702271 if (appConfig.HasFeatureFlags ()) {
22712272 EnableCMSRequestPriorities = appConfig.GetFeatureFlags ().GetEnableCMSRequestPriorities ();
0 commit comments