From 7902e4c3b115a035806a079731b9d9bfd3f3758f Mon Sep 17 00:00:00 2001 From: Chi Wai Chan Date: Mon, 6 Jan 2025 19:04:06 +0800 Subject: [PATCH] Fix thinko in --force logic Signed-off-by: Chi Wai Chan --- microceph/ceph/operations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microceph/ceph/operations.go b/microceph/ceph/operations.go index c64275f7..5bcaab19 100644 --- a/microceph/ceph/operations.go +++ b/microceph/ceph/operations.go @@ -21,7 +21,7 @@ func RunOperations(name string, operations []Operation, dryRun, force bool) erro logger.Errorf("%v", err) // Skip the error if forced if force { - return nil + continue } return err }