Skip to content

Commit

Permalink
fix review
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaohaifei committed Mar 11, 2022
1 parent 9e90dee commit 98db6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph/executor/admin/SpaceExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ folly::Future<Status> ClearSpaceExecutor::execute() {
->getMetaClient()
->clearSpace(csNode->getSpaceName(), csNode->getIfExists())
.via(runner())
.thenValue([this, csNode, spaceIdRet, ftIndexes](StatusOr<bool> resp) {
.thenValue([this, csNode, spaceIdRet, ftIndexes = std::move(ftIndexes)](StatusOr<bool> resp) {
if (!resp.ok()) {
LOG(ERROR) << "Clear space `" << csNode->getSpaceName() << "' failed: " << resp.status();
return resp.status();
Expand Down

0 comments on commit 98db6e7

Please sign in to comment.