chore: Add boolean parameter name when call registerForExecution (#2173)

This commit is contained in:
He-Pin(kerr) 2025-09-07 20:09:45 +08:00 committed by GitHub
parent c87b3cff72
commit 8d9450b19e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View file

@ -153,7 +153,7 @@ object TellOnlyBenchmark {
mbox.enqueue(receiver.self, invocation)
mbox.messageQueue match {
case mb: DroppingMessageQueue if mb.dropping => // do nothing
case _ => registerForExecution(mbox, true, false)
case _ => registerForExecution(mbox, hasMessageHint = true, hasSystemMessageHint = false)
}
}
}