We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8d519 commit 4e88df6Copy full SHA for 4e88df6
src/libponyrt/actor/actor.c
@@ -157,9 +157,8 @@ static void maybe_mark_should_mute(pony_ctx_t* ctx, pony_actor_t* to)
157
// 2. the sender isn't overloaded or under pressure
158
// AND
159
// 3. we are sending to another actor (as compared to sending to self)
160
- if(ctx->current != to && triggers_muting(to) &&
161
- !has_sync_flag_any(ctx->current, SYNC_FLAG_OVERLOADED |
162
- SYNC_FLAG_UNDER_PRESSURE))
+ if(ctx->current != to && !has_sync_flag_any(ctx->current,
+ SYNC_FLAG_OVERLOADED | SYNC_FLAG_UNDER_PRESSURE) && triggers_muting(to))
163
{
164
ctx->should_mute_actor = true;
165
0 commit comments