You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(helper): box pipe-drain buffer for Swift strict concurrency
CaddyManager.drainPipe captured a `var buffer = Data()` inside its
readabilityHandler closure. Swift 5.10 strict concurrency rejects the
mutation because the closure is @sendable. Wrap it in a small
`@unchecked Sendable` LineBufferBox — readabilityHandler is documented
to fire serially per file handle, so single-instance access is safe.
0 commit comments