From 6d0fb1c96aa7534ea1179b81b9a794cfad17207b Mon Sep 17 00:00:00 2001 From: Fan Yong Date: Wed, 9 Oct 2024 21:31:40 +0800 Subject: [PATCH] DAOS-16469 container: Lower log level for cont_aggregate_interval To reduce the side-effect caused by frequent log with -DER_INPROGRESS. Allow-unstable-test: true Signed-off-by: Fan Yong --- src/container/srv_target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/container/srv_target.c b/src/container/srv_target.c index 35ac3d4285c..caf2a4b2ee7 100644 --- a/src/container/srv_target.c +++ b/src/container/srv_target.c @@ -475,7 +475,7 @@ cont_aggregate_interval(struct ds_cont_child *cont, cont_aggregate_cb_t cb, if (rc == -DER_SHUTDOWN) { break; /* pool destroyed */ } else if (rc < 0) { - DL_CDEBUG(rc == -DER_BUSY, DB_EPC, DLOG_ERR, rc, + DL_CDEBUG(rc == -DER_BUSY || rc == -DER_INPROGRESS, DB_EPC, DLOG_ERR, rc, DF_CONT ": %s aggregate failed", DP_CONT(cont->sc_pool->spc_uuid, cont->sc_uuid), param->ap_vos_agg ? "VOS" : "EC");