]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon: emit warning during fs rm 55145/head
authorMilind Changire <mchangir@redhat.com>
Mon, 4 Nov 2024 16:01:39 +0000 (21:31 +0530)
committerMilind Changire <mchangir@redhat.com>
Mon, 4 Nov 2024 16:09:43 +0000 (21:39 +0530)
Signed-off-by: Milind Changire <mchangir@redhat.com>
src/mon/FSCommands.cc

index 6220a357ff01d3f0f7d382bce29a120247ed849f..cc53d2869f7ad3bd4d086188e481c486772f839f 100644 (file)
@@ -1211,6 +1211,11 @@ class RemoveFilesystemHandler : public FileSystemCommandHandler
 
     fsmap.erase_filesystem(fsp->get_fscid());
 
+    ss << "If there are active snapshot schedules associated with this "
+       << "file-system, you might see EIO errors in the mgr logs or at the "
+       << "snap-schedule command-line due to the missing file-system. "
+       << "However, these errors are transient and will get auto-resolved.";
+
     return 0;
   }
 };