minio/internal
Klaus Post 22aa16ab12
Fix grid reconnection deadlock (#19101)
If network conditions have filled the output queue before a reconnect happens blocked sends could stop reconnects from happening. In short `respMu` would be held for a mux client while sending - if the queue is full this will never get released and closing the mux client will hang.

A) Use the mux client context instead of connection context for sends, so sends are unblocked when the mux client is canceled.

B) Use a `TryLock` on "close" and cancel the request if we cannot get the lock at once. This will unblock any attempts to send.
2024-02-21 07:49:34 -08:00
..
2024-01-17 23:03:17 -08:00
2024-01-17 23:03:17 -08:00
2022-12-30 11:37:07 -08:00
2024-01-17 23:03:17 -08:00
2023-09-04 12:57:37 -07:00
2023-03-04 20:57:35 -08:00
2024-01-17 23:03:17 -08:00