blob: b41d9c672142dc3c7d96d6181ebf31f018f7bdae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab ft=cpp
#include "rgw_sync.h"
#define dout_subsys ceph_subsys_rgw
using namespace std;
std::ostream& RGWMetaSyncStatusManager::gen_prefix(std::ostream& out) const
{
return out << "meta sync: ";
}
unsigned RGWMetaSyncStatusManager::get_subsys() const
{
return dout_subsys;
}
void RGWRemoteMetaLog::finish()
{
going_down = true;
stop();
}
|