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
In the app that I am running, we use cypress-rails and cypress-on-rails. I am trying to set up VCR support. Everything seems to be smooth except the single thread requirement. I need to start the Puma server in single-threaded mode, and it looks like I cannot do so.
This is because lib/cypress-rails/server/puma.rb hardcodes threads to 0:4:
I am very confident I did not think very hard about this, if I did at all. If you want to make this configurable via an CYPRESS_RAILS_SERVER_THREADS env var, I'd support a PR
In the app that I am running, we use
cypress-rails
andcypress-on-rails
. I am trying to set up VCR support. Everything seems to be smooth except the single thread requirement. I need to start the Puma server in single-threaded mode, and it looks like I cannot do so.This is because
lib/cypress-rails/server/puma.rb
hardcodes threads to0:4
:cypress-rails/lib/cypress-rails/server/puma.rb
Line 10 in 9b3ed03
cypress-rails
doesn't seem to care aboutconfig/puma.rb
either.Is there a way to override that value? Thanks!
The text was updated successfully, but these errors were encountered: