MDTest convert FATAL to WARN (#307)

master
Julian Kunkel 2021-01-14 16:41:56 +00:00 committed by GitHub
parent d339caa501
commit 4a96436928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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) {