Skip to content

Commit

Permalink
DAOS-16469 container: Lower log level for cont_aggregate_interval (#1…
Browse files Browse the repository at this point in the history
…5388)

To reduce the side-effect caused by frequent log with -DER_INPROGRESS.

Signed-off-by: Fan Yong <[email protected]>
  • Loading branch information
Nasf-Fan authored Oct 24, 2024
1 parent d9a01d9 commit 0110337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/container/srv_target.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 0110337

Please sign in to comment.