Skip to content

Commit

Permalink
Merge pull request ceph#16641 from liewegas/wip-mgr-configs
Browse files Browse the repository at this point in the history
mgr/PyState: shut up about get_config on nonexistent keys

Reviewed-by: John Spray <john.spray@redhat.com>
  • Loading branch information
John Spray authored Jul 28, 2017
2 parents 3c12075 + 89cf82c commit c6ef41b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mgr/PyState.cc
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ ceph_config_get(PyObject *self, PyObject *args)
dout(10) << "ceph_config_get " << what << " found: " << value.c_str() << dendl;
return PyString_FromString(value.c_str());
} else {
derr << "ceph_config_get " << what << " not found " << dendl;
dout(4) << "ceph_config_get " << what << " not found " << dendl;
Py_RETURN_NONE;
}
}
Expand Down

0 comments on commit c6ef41b

Please sign in to comment.