From: Radoslaw Zarzynski Date: Mon, 12 Aug 2019 16:15:53 +0000 (+0200) Subject: crimson/osd: adopt PGLSPlainFilter. X-Git-Tag: v15.1.0~1774^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=edbf82e47f45f84d632a5b2c16adb48fe8df8918;p=ceph.git crimson/osd: adopt PGLSPlainFilter. Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/crimson/osd/ops_executer.cc b/src/crimson/osd/ops_executer.cc index 2d34e0dcf8d..674e89bd820 100644 --- a/src/crimson/osd/ops_executer.cc +++ b/src/crimson/osd/ops_executer.cc @@ -109,8 +109,7 @@ static inline std::unique_ptr get_pgls_filter( // storing non-const PGLSFilter for the sake of ::init() std::unique_ptr filter; if (type.compare("plain") == 0) { - //filter = std::make_unique(); - ::operation_not_supported(); + filter = std::make_unique(); } else { std::size_t dot = type.find("."); if (dot == type.npos || dot == 0 || dot == type.size() - 1) {