-
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
BatchingSqlJournal now preserves Sender in PersistCallback #3779
Conversation
@Horusiath mind validating this, or suggesting an alternative solution? |
OK
Le dim. 5 mai 2019 à 15:29, Ismael Hamed <notifications@github.com> a
écrit :
… @Horusiath <https://github.com/Horusiath> mind validating this, or
suggesting and alternative solutions?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#3779 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AKKIIENDJ7DWAPDEOPX56GTPT3OMLANCNFSM4HK3ICMA>
.
|
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.
Only one little change. Beside that, everything looks good 👍
@@ -10,6 +10,10 @@ | |||
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.1</NetStandardImplicitPackageVersion> | |||
</PropertyGroup> | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="System.ValueTuple" Version="4.5.0" /> |
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.
While I'd like to move to value tuples, I think this is a change to be done directly on Akka core package ;)
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.
Makes sense
c958bdd
to
c22ed96
Compare
c22ed96
to
0dd0c71
Compare
You good with the updates @Horusiath ? |
Currently, you have to capture Sender before calling Persist() when you use the BatchingSqlJournal, otherwise you end up with the wrong Sender in the PersistCallback.