From: Yehuda Sadeh Date: Sat, 30 Jun 2018 23:36:09 +0000 (-0700) Subject: rgw: register pubsub sync module X-Git-Tag: v14.1.0~616^2~59 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ce99093760e2ce3d5d8b96cba6a7039a71e1a7b5;p=ceph.git rgw: register pubsub sync module Signed-off-by: Yehuda Sadeh --- diff --git a/src/rgw/rgw_sync_module.cc b/src/rgw/rgw_sync_module.cc index 196f98541e94..9de0d333f0b3 100644 --- a/src/rgw/rgw_sync_module.cc +++ b/src/rgw/rgw_sync_module.cc @@ -7,6 +7,7 @@ #include "rgw_sync_module_log.h" #include "rgw_sync_module_es.h" #include "rgw_sync_module_aws.h" +#include "rgw_sync_module_pubsub.h" #include @@ -67,4 +68,7 @@ void rgw_register_sync_modules(RGWSyncModulesManager *modules_manager) RGWSyncModuleRef aws_module(std::make_shared()); modules_manager->register_module("cloud", aws_module); + + RGWSyncModuleRef pubsub_module(std::make_shared()); + modules_manager->register_module("pubsub", pubsub_module); }