@@ -239,7 +239,7 @@ void TCms::ProcessInitQueue(const TActorContext &ctx)
239
239
240
240
void TCms::SubscribeForConfig (const TActorContext &ctx)
241
241
{
242
- NConsole::SubscribeViaConfigDispatcher (ctx, {(ui32)NKikimrConsole::TConfigItem::CmsConfigItem,
242
+ NConsole::SubscribeViaConfigDispatcher (ctx, {(ui32)NKikimrConsole::TConfigItem::CmsConfigItem,
243
243
(ui32)NKikimrConsole::TConfigItem::FeatureFlagsItem}, ctx.SelfID );
244
244
}
245
245
@@ -1159,6 +1159,7 @@ void TCms::AddHostState(const TClusterInfoPtr &clusterInfo, const TNodeInfo &nod
1159
1159
host->SetNodeId (node.NodeId );
1160
1160
host->SetInterconnectPort (node.IcPort );
1161
1161
host->SetTimestamp (timestamp.GetValue ());
1162
+ host->SetStartTimeSeconds (node.StartTime .Seconds ());
1162
1163
node.Location .Serialize (host->MutableLocation (), false );
1163
1164
for (auto marker : node.Markers ) {
1164
1165
host->AddMarkers (marker);
@@ -1982,7 +1983,7 @@ void TCms::Handle(TEvCms::TEvCheckRequest::TPtr &ev, const TActorContext &ctx)
1982
1983
resp->Record .SetRequestId (scheduled.RequestId );
1983
1984
1984
1985
ClusterInfo->ScheduleActions (scheduled, &ctx);
1985
-
1986
+
1986
1987
copy = new TRequestInfo (scheduled);
1987
1988
State->ScheduledRequests .emplace (rec.GetRequestId (), std::move (scheduled));
1988
1989
} else {
@@ -2265,7 +2266,7 @@ void TCms::Handle(TEvCms::TEvGetSentinelStateRequest::TPtr &ev, const TActorCont
2265
2266
2266
2267
void TCms::Handle (TEvConsole::TEvConfigNotificationRequest::TPtr &ev,
2267
2268
const TActorContext &ctx)
2268
- {
2269
+ {
2269
2270
const auto & appConfig = ev->Get ()->Record .GetConfig ();
2270
2271
if (appConfig.HasFeatureFlags ()) {
2271
2272
EnableCMSRequestPriorities = appConfig.GetFeatureFlags ().GetEnableCMSRequestPriorities ();
0 commit comments