Replace Thruster/Puma web server with Falcon#6089
Merged
TheOneFromNorway merged 3 commits intonextfrom Mar 10, 2026
Merged
Conversation
fe0cd68 to
6f58ebb
Compare
6f58ebb to
dcaefc1
Compare
dcaefc1 to
d179e28
Compare
thomasleese
reviewed
Feb 26, 2026
thomasleese
requested changes
Mar 3, 2026
Contributor
thomasleese
left a comment
There was a problem hiding this comment.
Just changing my earlier review to request changes so it's easier to find in filters - feel free to dismiss and re-review when ready.
d179e28 to
4f6993f
Compare
3da518f to
3c85f74
Compare
thomasleese
approved these changes
Mar 5, 2026
3c85f74 to
cad725c
Compare
Replaces Puma (with Thruster proxy) with Falcon, a high-performance Ruby web server built on the Async framework with native HTTP/2 and fiber-based concurrency, eliminating the need for a separate proxy. Configuration is driven by environment variables: - PORT: listen port (default 4000) - WEB_CONCURRENCY: worker count (default 2) - HTTP_VERSION: http1 (default) or http2 - HTTP_PROTOCOL: http (default) or https (self-signed via localhost gem)
Move Console.logger.off! to top level of spec_helper so it suppresses all console-adapter-rails log output (which replaces Rails.logger), not just Falcon server logs within the Capybara server block.
- Add localhost as explicit requirement - Use bake command explicitly
cad725c to
2234981
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces Puma (with Thruster proxy) with Falcon, a high-performance Ruby web server built on the Async framework with native HTTP/2 and fiber-based concurrency, eliminating the need for a separate proxy.
Configuration is driven by environment variables:
JIRA Ticket: MAV-3446