ByteYue commented on code in PR #27091: URL: https://github.com/apache/doris/pull/27091#discussion_r1395909196
########## be/src/olap/tablet.cpp: ########## @@ -2057,7 +2057,7 @@ Status Tablet::cooldown() { if (_cooldown_replica_id == replica_id()) { // this replica is cooldown replica - RETURN_IF_ERROR(_cooldown_data()); + RETURN_IF_ERROR(_cooldown_data(rowset)); Review Comment: ```suggestion RETURN_IF_ERROR(_cooldown_data(std::move(rowset))); ```suggestion RETURN_IF_ERROR(_cooldown_data(rowset)); ``` ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org