Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / rgw / rgw_sync_module_log.h
1 #ifndef CEPH_RGW_SYNC_MODULE_LOG_H
2 #define CEPH_RGW_SYNC_MODULE_LOG_H
3
4 #include "rgw_sync_module.h"
5
6 class RGWLogSyncModule : public RGWSyncModule {
7 public:
8   RGWLogSyncModule() {}
9   bool supports_data_export() override {
10     return false;
11   }
12   int create_instance(CephContext *cct, map<string, string, ltstr_nocase>& config, RGWSyncModuleInstanceRef *instance) override;
13 };
14
15 #endif