File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,7 @@ private: \
197
197
198
198
TVector<TFuture<void >> futures;
199
199
for (auto endpointId: storedIds) {
200
+ STORAGE_INFO (" Restoring endpoint, ID: " << endpointId.Quote ());
200
201
auto requestOrError = Storage->GetEndpoint (endpointId);
201
202
if (HasError (requestOrError)) {
202
203
STORAGE_WARN (" Failed to restore endpoint. ID: " << endpointId
@@ -253,6 +254,9 @@ private: \
253
254
Storage->RemoveEndpoint (endpointId);
254
255
}
255
256
}
257
+ else {
258
+ STORAGE_INFO (" Endpoint was restored. ID: " << endpointId.Quote ());
259
+ }
256
260
}
257
261
258
262
void AddStartingSocket (
Original file line number Diff line number Diff line change @@ -216,6 +216,13 @@ void TCreateSessionActor::HandleDescribeFileStoreResponse(
216
216
217
217
if (FAILED (msg->GetStatus ())) {
218
218
if (GetErrorKind (msg->GetError ()) != EErrorKind::ErrorRetriable) {
219
+ LOG_ERROR (
220
+ ctx,
221
+ TFileStoreComponents::SERVICE_WORKER,
222
+ " %s Failed to describe filestore %s Error: %s" ,
223
+ LogTag ().c_str (),
224
+ FileSystemId.c_str (),
225
+ FormatError (msg->GetError ()).c_str ());
219
226
ReportDescribeFileStoreError ();
220
227
}
221
228
You can’t perform that action at this time.
0 commit comments