Skip to content

Commit

Permalink
ipvs: lower 'no dest found' log message level when scheduling a servi…
Browse files Browse the repository at this point in the history
…ce without available backends

Signed-off-by: ywc689 <[email protected]>
  • Loading branch information
ywc689 committed Sep 12, 2023
1 parent e3a7ee0 commit 1ca55d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ipvs/ip_vs_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ struct dp_vs_conn *dp_vs_schedule(struct dp_vs_service *svc,

dest = svc->scheduler->schedule(svc, mbuf, iph);
if (!dest) {
RTE_LOG(WARNING, IPVS, "%s: no dest found.\n", __func__);
RTE_LOG(INFO, IPVS, "%s: no dest found.\n", __func__);
#ifdef CONFIG_DPVS_MBUF_DEBUG
dp_vs_mbuf_dump("found dest failed.", iph->af, mbuf);
#endif
Expand Down

0 comments on commit 1ca55d8

Please sign in to comment.