diff options
Diffstat (limited to 'src/mgr/PyModule.h')
-rw-r--r-- | src/mgr/PyModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mgr/PyModule.h b/src/mgr/PyModule.h index 353e222d8f6..3ffdeb8f13a 100644 --- a/src/mgr/PyModule.h +++ b/src/mgr/PyModule.h @@ -126,7 +126,7 @@ public: void get_commands(std::vector<ModuleCommand> *out) const { Mutex::Locker l(lock); - assert(out != nullptr); + ceph_assert(out != nullptr); out->insert(out->end(), commands.begin(), commands.end()); } |