Skip to content

Commit

Permalink
Merge PR ceph#24870 into master
Browse files Browse the repository at this point in the history
* refs/pull/24870/head:
	client: request next osdmap for blacklisted client

Reviewed-by: Patrick Donnelly <[email protected]>
  • Loading branch information
batrick committed Nov 2, 2018
2 parents cf9a0a2 + 1baf91e commit a71a984
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/client/Client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2513,6 +2513,12 @@ void Client::handle_osd_map(MOSDMap *m)
return o.is_blacklisted(myaddrs);});
}

// Always subscribe to next osdmap for blacklisted client
// until this client is not blacklisted.
if (blacklisted) {
objecter->maybe_request_map();
}

if (objecter->osdmap_full_flag()) {
_handle_full_flag(-1);
} else {
Expand Down

0 comments on commit a71a984

Please sign in to comment.