mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
fix jruby deleting env vars (#1305)
This commit is contained in:
parent
bd453f8108
commit
378f386a04
1 changed files with 7 additions and 0 deletions
|
@ -239,6 +239,13 @@ class TestIntegration < Minitest::Test
|
|||
|
||||
# It does not share environments between multiple generations, which would break Dotenv
|
||||
def test_restart_restores_environment
|
||||
if Puma.jruby?
|
||||
# jruby has a bug where setting `nil` into the ENV or `delete` do not change the
|
||||
# next workers ENV
|
||||
assert true
|
||||
return
|
||||
end
|
||||
|
||||
server("-q test/rackup/hello-env.ru")
|
||||
|
||||
s = connect
|
||||
|
|
Loading…
Add table
Reference in a new issue