You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
-2
Original file line number
Diff line number
Diff line change
@@ -181,13 +181,11 @@ This will run the journal with its default settings. The default settings can be
181
181
#### HOCON Configuration
182
182
183
183
-`write-plugin` - Absolute path to the write journal plugin configuration entry that this query journal will connect to. If undefined (or "") it will connect to the default journal as specified by the `akka.persistence.journal.plugin` property.
184
-
-`refresh-interval` - The amount of time the plugin will wait between queries when it didn't find any events.
Copy file name to clipboardexpand all lines: src/Akka.Persistence.EventStore.Hosting/HostingExtensions.cs
+2-4
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,7 @@ public static AkkaConfigurationBuilder WithEventStorePersistence(
24
24
string?persistedEventsStreamName=null,
25
25
string?tenantStreamNamePattern=null,
26
26
string?materializerDispatcher=null,
27
-
TimeSpan?queryRefreshInterval=null,
28
-
TimeSpan?queryProjectionCatchupTimeout=null)
27
+
TimeSpan?queryNoStreamTimeout=null)
29
28
{
30
29
if(mode==PersistenceMode.SnapshotStore&&journalBuilderis not null)
31
30
thrownewException($"{nameof(journalBuilder)} can only be set when {nameof(mode)} is set to either {PersistenceMode.Both} or {PersistenceMode.Journal}");
@@ -44,8 +43,7 @@ public static AkkaConfigurationBuilder WithEventStorePersistence(
0 commit comments