From: Abhishek Lekshmanan Date: Wed, 22 Feb 2017 12:38:48 +0000 (+0100) Subject: rgw: sync_module: register aws module X-Git-Tag: v13.1.0~270^2~123 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=61b30c8f815b675f640636707e0f546ed8cb2d81;p=ceph.git rgw: sync_module: register aws module Signed-off-by: Abhishek Lekshmanan --- diff --git a/src/rgw/rgw_sync_module.cc b/src/rgw/rgw_sync_module.cc index 215dcf2fee0f..635cc3c519c4 100644 --- a/src/rgw/rgw_sync_module.cc +++ b/src/rgw/rgw_sync_module.cc @@ -6,6 +6,7 @@ #include "rgw_sync_module_log.h" #include "rgw_sync_module_es.h" +#include "rgw_sync_module_aws.h" #include @@ -63,4 +64,7 @@ void rgw_register_sync_modules(RGWSyncModulesManager *modules_manager) RGWSyncModuleRef es_module(std::make_shared()); modules_manager->register_module("elasticsearch", es_module); + + RGWSyncModuleRef aws_module(std::make_shared()); + modules_manager->register_module("aws", aws_module); }