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
While pairing with @ioquatix, we looked at the live reload code in Bridgetown to try and make it work with both Falcon and Puma.
Currently we're spawning a background thread to hold the connection, which is at best a hack, and at worst, wrong. We need to do this because Ctrl+C doesn't kill Puma without it. This turns out to be a bug in Puma itself. We've filed an issue here: puma/puma#3569.
After this is fixed, we should be able to remove the background thread from the SSE endpoint without any issues.
The text was updated successfully, but these errors were encountered:
While pairing with @ioquatix, we looked at the live reload code in Bridgetown to try and make it work with both Falcon and Puma.
Currently we're spawning a background thread to hold the connection, which is at best a hack, and at worst, wrong. We need to do this because Ctrl+C doesn't kill Puma without it. This turns out to be a bug in Puma itself. We've filed an issue here: puma/puma#3569.
After this is fixed, we should be able to remove the background thread from the SSE endpoint without any issues.
The text was updated successfully, but these errors were encountered: