diff options
author | alexvru <alexvru@ydb.tech> | 2022-10-28 13:20:12 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2022-10-28 13:20:12 +0300 |
commit | 5f4f0d7775ea9bc0abd2e10f21823900202bf880 (patch) | |
tree | 0eab2135b4195fca9b71b8989f10c48a6d22b1f3 /library/cpp/actors/testlib | |
parent | 15d014b82db58bc2964edbc39a38649dbc5b2d26 (diff) | |
download | ydb-5f4f0d7775ea9bc0abd2e10f21823900202bf880.tar.gz |
Add extra Y_VERIFY in PassAway
Diffstat (limited to 'library/cpp/actors/testlib')
-rw-r--r-- | library/cpp/actors/testlib/test_runtime.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp index 578dff353e1..b14892f67d5 100644 --- a/library/cpp/actors/testlib/test_runtime.cpp +++ b/library/cpp/actors/testlib/test_runtime.cpp @@ -307,6 +307,10 @@ namespace NActors { Node->MailboxTable->ReclaimMailbox(mailboxType, hint, revolvingCounter); } + TMailboxHeader *ResolveMailbox(ui32 hint) override { + return Node->MailboxTable->Get(hint); + } + void Schedule(TInstant deadline, TAutoPtr<IEventHandle> ev, ISchedulerCookie *cookie, TWorkerId workerId) override { DoSchedule(deadline, ev, cookie, workerId); } |