From: Christopher Faulet Date: Thu, 5 Mar 2026 16:57:51 +0000 (+0100) Subject: MINOR: stconn: Wakup the SC with TASK_WOKEN_IO state from opposite side X-Git-Tag: v3.4-dev7~98 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=7c895092a7390328fe9e281a24677a5a61f59e5d;p=haproxy.git MINOR: stconn: Wakup the SC with TASK_WOKEN_IO state from opposite side When a SC is woken up by the opposite side, in inter stream-connector calls, TASK_WOKEN_IO state is now used. --- diff --git a/src/stconn.c b/src/stconn.c index d2330f1ab..0c641e50f 100644 --- a/src/stconn.c +++ b/src/stconn.c @@ -876,7 +876,7 @@ static void sc_app_chk_rcv_conn(struct stconn *sc) /* (re)start reading */ if (sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST)) - tasklet_wakeup(sc->wait_event.tasklet); + tasklet_wakeup(sc->wait_event.tasklet, TASK_WOKEN_IO); }