Fluxzero 1.153.1
1.153.1 (2026-04-24)
Bug Fixes
fix(logging): publish logback errors asynchronously (
fbf207a)FluxzeroLogbackAppender could block while publishing a Logback error through the error gateway. During websocket connection setup this can deadlock the connect path because the appender still holds Logback's append lock while the websocket onOpen callback logs its successful connection.
Move publication onto a worker pool so Logback appenders do not participate in the websocket connect call stack, preserve correlation metadata before the async boundary, and keep the websocket reproduction with the test-server module. Also remove duplicate downstream logback-test.xml files that made Logback report multiple test configs on the classpath.