Changes between Version 1 and Version 2 of Ticket #2528, comment 2
- Timestamp:
- 08/10/23 09:45:06 (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2528, comment 2
v1 v2 1 Currently QUIC does not handle reloads well. Existing connections may fail while two sets of workers are running. This happens because while reloading, a UDP socket is shared between two workers - old a new. Incoming packets will typically arrive in the new worker, while old connections will die out and their packets willbe rejected.1 Currently QUIC does not handle reloads well. Existing connections may fail while two sets of workers are running. This happens because while reloading, a UDP socket is shared between two workers - old a new. Incoming packets may arrive in the wrong worker. As a result, connections may close and their packets may be rejected. 2 2 3 3 I sent out a patchset a while ago which should fix the issue for Linux: