-
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
reduce the number of IMessageExtractor
invocations
#5217
reduce the number of IMessageExtractor
invocations
#5217
Conversation
…age processing hotpath
IMessageExtractor
invocations; re-arrange message processing hotpathIMessageExtractor
invocations
Part of #5203 |
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
Looks like we have a legit MNTR failure - taking a look at that |
I'm going to have to redo parts of this |
var extracted = shard.ExtractEntityId(message); | ||
if (!extracted.HasValue) return false; | ||
|
||
shard.DeliverTo(extracted.Value.Item1, message, extracted.Value.Item2, shard.Context.Sender); |
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.
Is there a reason this got changed to shard.DeliverTo
when the old code did shard.DeliverMessage
?
This was superseded by #6863 |
No description provided.