From 7c02b72f210c4311ca54c5ed596d2e5ff51fec1d Mon Sep 17 00:00:00 2001 From: Handora Date: Thu, 29 Feb 2024 08:15:15 +0000 Subject: [PATCH] [BUG] fix compatibility --- src/storage/high_availability/ob_transfer_struct.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/storage/high_availability/ob_transfer_struct.cpp b/src/storage/high_availability/ob_transfer_struct.cpp index cd847852ec..c3c322abe5 100644 --- a/src/storage/high_availability/ob_transfer_struct.cpp +++ b/src/storage/high_availability/ob_transfer_struct.cpp @@ -48,9 +48,8 @@ void ObTXStartTransferOutInfo::reset() bool ObTXStartTransferOutInfo::is_valid() const { return src_ls_id_.is_valid() - && dest_ls_id_.is_valid() - && !tablet_list_.empty() - && transfer_epoch_ > 0; + && dest_ls_id_.is_valid() + && !tablet_list_.empty(); } int ObTXStartTransferOutInfo::assign(const ObTXStartTransferOutInfo &start_transfer_out_info)