We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1ef5dd commit 4f96b1cCopy full SHA for 4f96b1c
src/ServiceControl.Audit.Persistence.RavenDB/RavenEmbeddedPersistenceLifecycle.cs
@@ -61,7 +61,7 @@ public async Task Initialize(CancellationToken cancellationToken = default)
61
}
62
catch (DatabaseLoadTimeoutException e)
63
{
64
- 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);
65
await Task.Delay(500, cancellationToken);
66
67
@@ -86,4 +86,4 @@ public void Dispose()
86
87
static readonly ILog Log = LogManager.GetLogger(typeof(RavenEmbeddedPersistenceLifecycle));
88
89
-}
+}
0 commit comments