Skip to content

Commit

Permalink
Merge pull request #12726 from liewegas/wip-18372
Browse files Browse the repository at this point in the history
osd: _exit() intead of exit() for failure injection

Reviewed-by: Samuel Just <sjust@redhat.com>
  • Loading branch information
liewegas committed Jan 9, 2017
2 parents 25c9910 + c2fac9c commit d4f033c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/OSD.cc
Expand Up @@ -4795,7 +4795,7 @@ void OSD::RemoveWQ::_process(

if (cct->_conf->osd_inject_failure_on_pg_removal) {
generic_derr << "osd_inject_failure_on_pg_removal" << dendl;
exit(1);
_exit(1);
}
t.remove_collection(coll);

Expand Down

0 comments on commit d4f033c

Please sign in to comment.