Skip to content

Commit

Permalink
fix unexpected event for partition nonrepl rdma actor (#1780) (#1785)
Browse files Browse the repository at this point in the history
  • Loading branch information
WilyTiger authored Aug 13, 2024
1 parent be6d830 commit 88f2edb
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -600,9 +600,14 @@ STFUNC(TNonreplicatedPartitionRdmaActor::StateZombie)

HFunc(NPartition::TEvPartition::TEvDrainRequest, RejectDrain);

HFunc(TEvNonreplPartitionPrivate::TEvChecksumBlocksRequest, RejectChecksumBlocks);

HFunc(TEvNonreplPartitionPrivate::TEvReadBlocksCompleted, HandleReadBlocksCompleted);
HFunc(TEvNonreplPartitionPrivate::TEvWriteBlocksCompleted, HandleWriteBlocksCompleted);
HFunc(TEvNonreplPartitionPrivate::TEvZeroBlocksCompleted, HandleZeroBlocksCompleted);
HFunc(
TEvNonreplPartitionPrivate::TEvChecksumBlocksCompleted,
HandleChecksumBlocksCompleted);

HFunc(TEvVolume::TEvDescribeBlocksRequest, RejectDescribeBlocks);
HFunc(TEvVolume::TEvGetCompactionStatusRequest, RejectGetCompactionStatus);
Expand Down

0 comments on commit 88f2edb

Please sign in to comment.