]> git.proxmox.com Git - ceph.git/blame_incremental - ceph/src/rgw/rgw_sync.cc
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / rgw / rgw_sync.cc
... / ...
CommitLineData
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab ft=cpp
3
4#include "rgw_sync.h"
5
6#define dout_subsys ceph_subsys_rgw
7
8using namespace std;
9
10std::ostream& RGWMetaSyncStatusManager::gen_prefix(std::ostream& out) const
11{
12 return out << "meta sync: ";
13}
14
15unsigned RGWMetaSyncStatusManager::get_subsys() const
16{
17 return dout_subsys;
18}
19
20void RGWRemoteMetaLog::finish()
21{
22 going_down = true;
23 stop();
24}