Skip to content

Commit

Permalink
Merge pull request #17233 from tchaikov/wip-luminous-pr-17183
Browse files Browse the repository at this point in the history
luminous: osd/PGBackend: delete reply if fails to complete delete request
  • Loading branch information
liewegas committed Aug 26, 2017
2 parents 1715764 + 06e9b92 commit c2ff9fb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/osd/PGBackend.cc
Expand Up @@ -140,6 +140,8 @@ void PGBackend::handle_recovery_delete(OpRequestRef op)
[=](int r) {
if (r != -EAGAIN) {
get_parent()->send_message_osd_cluster(reply, conn.get());
} else {
reply->put();
}
}));
gather.activate();
Expand Down

0 comments on commit c2ff9fb

Please sign in to comment.