-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix PersistenceIdsPublisher hung on failure messages #6374
Fix PersistenceIdsPublisher hung on failure messages #6374
Conversation
@Arkatufus looks like a compilation failure |
Ah, API Verify problem |
Fixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
case Cancel _: | ||
Context.Stop(Self); | ||
return true; | ||
|
||
case Status.Failure msg: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -77,14 +101,20 @@ private bool Active(object message) | |||
{ | |||
switch (message) | |||
{ | |||
case CurrentPersistenceIds _: | |||
// Ignore duplicate CurrentPersistenceIds response |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -26,7 +25,7 @@ public class SqlReadJournal : | |||
IAllEventsQuery, | |||
ICurrentAllEventsQuery | |||
{ | |||
public static string Identifier = "akka.persistence.query.journal.sql"; | |||
public const string Identifier = "akka.persistence.query.journal.sql"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@Arkatufus this will need backport to v1.4 |
Will do |
…e messages * Fix PersistenceIdsPublisher hung on failure messages * Downgrade failure messages from Warning to Info * Update API Verify list (Cherry-picked from d3b89da)
Fixes #6365
Changes
Tell
toAsk