commit | 3bbd2baab3bbbc2234b8e252f5e0cd311e490395 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Mon Feb 27 16:13:33 2023 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Mon Feb 27 17:45:45 2023 +0100 |
tree | 6fce5c1b2b1d19e596c7b4551005783f7f45df57 | |
parent | c9ec9bc8346783417fe732cc4d22a074dca263f1 [diff] |
BUG/MINOR: stream: Remove BUG_ON about the task expiration in process_stream() At the end of process_stream(), A BUG_ON was recently added to abort if we leave the function with an expired task. However, it may happen if an event prevents the timeout to be handled but nothing evolved. In this case, the task expiration is not updated and we expect to catch the timeout on the immediate task wakeup. No backport needed.