From 61b30c8f815b675f640636707e0f546ed8cb2d81 Mon Sep 17 00:00:00 2001 From: Abhishek Lekshmanan Date: Wed, 22 Feb 2017 13:38:48 +0100 Subject: [PATCH] rgw: sync_module: register aws module Signed-off-by: Abhishek Lekshmanan --- src/rgw/rgw_sync_module.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/rgw/rgw_sync_module.cc b/src/rgw/rgw_sync_module.cc index 215dcf2fee0fb..635cc3c519c4b 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); } -- 2.39.5