From 4a964369284ff842146339c657362c58bef17e33 Mon Sep 17 00:00:00 2001 From: Julian Kunkel Date: Thu, 14 Jan 2021 16:41:56 +0000 Subject: [PATCH] MDTest convert FATAL to WARN (#307) --- src/mdtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mdtest.c b/src/mdtest.c index 1a71174..0887da4 100644 --- a/src/mdtest.c +++ b/src/mdtest.c @@ -1648,7 +1648,7 @@ void create_remove_directory_tree(int create, if (!create) { VERBOSE(2,5,"Remove directory '%s'", dir); if (-1 == o.backend->rmdir(dir, o.backend_options)) { - FAIL("Unable to remove directory %s", dir); + EWARNF("Unable to remove directory %s", dir); } } } else if (currDepth <= o.depth) {