Skip to content
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

Resequencer should always be a child of the journal actor #7481

Merged
merged 2 commits into from
Jan 22, 2025

Conversation

Aaronontheweb
Copy link
Member

@Aaronontheweb Aaronontheweb commented Jan 22, 2025

Changes

close #7480

Checklist

For significant changes, please ensure that the following have been completed (delete if not relevant):

@@ -81,7 +81,7 @@ protected AsyncWriteJournal()
_replayFilterMaxOldWriters = config.GetInt("replay-filter.max-old-writers", 0);
_replayDebugEnabled = config.GetBoolean("replay-filter.debug", false);

_resequencer = Context.System.ActorOf(Props.Create(() => new Resequencer()));
_resequencer = Context.ActorOf(Props.Create(() => new Resequencer()), "resequencer");
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Self-explanatory

Copy link
Contributor

@Arkatufus Arkatufus left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
2 participants