Quellcode durchsuchen

Add PERSISTENT_TIMEOUT option (#11756)

Add environment variable to so `persistent_timeout` option of puma can be changed.
Yamagishi Kazutoshi vor 4 Jahren
Ursprung
Commit
bdca8da8eb
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 2 0
      config/puma.rb

+ 2 - 0
config/puma.rb

@@ -1,3 +1,5 @@
+persistent_timeout ENV.fetch('PERSISTENT_TIMEOUT') { 20 }.to_i
+
 threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
 threads threads_count, threads_count