Skip to content

Commit ea473b4

Browse files
committed
Fix typo
1 parent 86413a0 commit ea473b4

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

ydb/core/blobstorage/dsproxy/ut/dsproxy_env_mock_ut.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,14 @@ struct TDSProxyEnv {
120120
.Now = TInstant::Now(),
121121
.StoragePoolCounters = StoragePoolCounters,
122122
.RestartCounter = ev->Get()->RestartCounter,
123-
.TraceId = std::move(ev->TraceId),
124123
.Event = ev->Get(),
125124
.ExecutionRelay = ev->Get()->ExecutionRelay,
126125
.LatencyQueueKind = kind,
127126
},
128127
.TimeStatsEnabled = Mon->TimeStats.IsEnabled(),
129128
.Stats = PerDiskStatsPtr,
130129
.EnableRequestMod3x3ForMinLatency = false,
131-
}));
130+
}, std::move(ev->TraceId)));
132131
}
133132

134133
std::unique_ptr<IActor> CreatePutRequestActor(TBatchedVec<TEvBlobStorage::TEvPut::TPtr> &batched,
@@ -170,13 +169,12 @@ struct TDSProxyEnv {
170169
.Now = TInstant::Now(),
171170
.StoragePoolCounters = StoragePoolCounters,
172171
.RestartCounter = ev->Get()->RestartCounter,
173-
.TraceId = std::move(ev->TraceId),
174172
.Event = ev->Get(),
175173
.ExecutionRelay = ev->Get()->ExecutionRelay,
176174
.LatencyQueueKind = kind,
177175
},
178176
.NodeLayout = TNodeLayoutInfoPtr(NodeLayoutInfo)
179-
}));
177+
}, std::move(ev->TraceId)));
180178
}
181179

182180
std::unique_ptr<IActor> CreatePatchRequestActor(TEvBlobStorage::TEvPatch::TPtr &ev, bool useVPatch = false) {
@@ -191,12 +189,11 @@ struct TDSProxyEnv {
191189
.Now = TInstant::Now(),
192190
.StoragePoolCounters = StoragePoolCounters,
193191
.RestartCounter = ev->Get()->RestartCounter,
194-
.TraceId = std::move(ev->TraceId),
195192
.Event = ev->Get(),
196193
.ExecutionRelay = ev->Get()->ExecutionRelay
197194
},
198195
.UseVPatch = useVPatch
199-
}));
196+
}, std::move(ev->TraceId)));
200197
}
201198
};
202199

ydb/core/cms/json_proxy_proto.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class TJsonProxyProto : public TActorBootstrapped<TJsonProxyProto> {
7979
else if (name == ".NKikimrConfig.TImmediateControlsConfig.TVDiskControls")
8080
return ReplyWithTypeDescription(*NKikimrConfig::TImmediateControlsConfig::TVDiskControls::descriptor(), ctx);
8181
else if (name == ".NKikimrConfig.TImmediateControlsConfig.TTabletControls")
82-
return ReplyWithTypeDescription(*NKikimrConfig::TImmediateControlsConfig::TTabletControls::descriptor(), ctx
82+
return ReplyWithTypeDescription(*NKikimrConfig::TImmediateControlsConfig::TTabletControls::descriptor(), ctx);
8383
else if (name == ".NKikimrConfig.TImmediateControlsConfig.TDSProxyControls")
8484
return ReplyWithTypeDescription(*NKikimrConfig::TImmediateControlsConfig::TDSProxyControls::descriptor(), ctx);
8585
else if (name == ".NKikimrConfig.TImmediateControlsConfig.TBlobStorageControllerControls")

0 commit comments

Comments
 (0)