Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public async Task Initialize(CancellationToken cancellationToken = default)
}
catch (DatabaseLoadTimeoutException e)
{
Log.Warn("Could not connect to database. Retrying in 500ms...", e);
Log.Warn("Connecting to the embedded RavenDB database timed out. Retrying in 500ms...", e);
await Task.Delay(500, cancellationToken);
}
}
Expand All @@ -86,4 +86,4 @@ public void Dispose()

static readonly ILog Log = LogManager.GetLogger(typeof(RavenEmbeddedPersistenceLifecycle));
}
}
}