From b6e085676a7a5215fb13233688a0d909e3d2c70d Mon Sep 17 00:00:00 2001 From: Alexandre Ioffe Date: Fri, 9 Dec 2022 14:52:55 -0800 Subject: [PATCH] EX-5924 lipe: lipe_scan3 ERROR replaced by WARNING Decrease severity of the message down to WARNING. Test-Parameters: trivial testlist=sanity-lipe-find3 Signed-off-by: Alexandre Ioffe Change-Id: I2f4b885248692e042ba9eb0f97736401e6d35de6 Reviewed-on: https://review.whamcloud.com/c/ex/lustre-release/+/49355 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: Colin Faber --- lipe/src/lipe_scan3/ls3_scan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lipe/src/lipe_scan3/ls3_scan.c b/lipe/src/lipe_scan3/ls3_scan.c index 13361fa..670d112 100644 --- a/lipe/src/lipe_scan3/ls3_scan.c +++ b/lipe/src/lipe_scan3/ls3_scan.c @@ -1159,7 +1159,8 @@ static int ls3_scan_client_mount_init(struct ls3_instance *li, const char *path, } else if (path == LS3_CSTR_AUTO) { rc = llapi_search_rootpath(path_auto, ldd_fsname); if (rc < 0) { - LS3_ERROR("cannot find client mount for fsname '%s': %s\n", ldd_fsname, xstrerror(rc)); + LS3_WARNING("cannot find client mount for fsname '%s': %s\n", + ldd_fsname, xstrerror(rc)); goto out; } -- 1.8.3.1