commit | a5ea7519222282d5a5abd107ff4bdfee90b54fae | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Dec 11 10:24:05 2020 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Dec 11 10:29:11 2020 +0100 |
tree | 1ae1030e691ba81b5d43355ca930f0d19c508053 | |
parent | 5a1d439225f803654d512d3317496b802a909c77 [diff] |
MINOR: stream-int: don't touch polling anymore on shutdown Not only it's become totally useless with muxes, in addition it's dangerous to play with the mux's FD while shutting a stream down for writes. It's already done *if necessary* by the cs_shutw() code at the mux layer. Fortunately it doesn't seem to have any impact, most likely the polling updates used to immediately revert this operation.