]> git.openstreetmap.org Git - rails.git/commitdiff
Switch to dynamic allocation for the Firefox bidi port
authorTom Hughes <tom@compton.nu>
Wed, 19 Mar 2025 08:27:15 +0000 (08:27 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 19 Mar 2025 08:48:33 +0000 (08:48 +0000)
config/initializers/selenium.rb

index 5e683d8b2332c1fd34beda26514b233d43750f24..96fd90acd49ae9708d3fee462cd7860abcba5355 100644 (file)
@@ -4,28 +4,10 @@ if Rails.env.test?
   module OpenStreetMap
     module Selenium
       module BidiPort
-        module ClassMethods
-          attr_accessor :websocket_port
-        end
-
-        def self.prepended(base)
-          class << base
-            prepend ClassMethods
-          end
-
-          base.websocket_port = 10000
-
-          ActiveSupport::Testing::Parallelization.after_fork_hook do |worker|
-            base.websocket_port = 10000 + worker
-          end
-        end
-
         def initialize(config)
           super
 
-          @extra_args = Array(@extra_args) << "--websocket-port=#{self.class.websocket_port}"
-
-          self.class.websocket_port += 256
+          @extra_args = Array(@extra_args) << "--websocket-port=0"
         end
       end
     end