mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
cephfs-mirror: ignore parent directory snapshots when building snap map
Signed-off-by: Venky Shankar <vshankar@redhat.com>
This commit is contained in:
parent
a67d1cf2a7
commit
b6069f45b3
@ -426,7 +426,7 @@ int PeerReplayer::build_snap_map(const std::string &dir_path,
|
||||
while (entry != NULL) {
|
||||
auto d_name = std::string(entry->d_name);
|
||||
dout(20) << ": entry=" << d_name << dendl;
|
||||
if (d_name != "." && d_name != "..") {
|
||||
if (d_name != "." && d_name != ".." && d_name.rfind("_", 0) != 0) {
|
||||
snaps.emplace(d_name);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user