From 0912b0cea1576e96ee4e84a84cfff2a80750ecf6 Mon Sep 17 00:00:00 2001 From: Nafaa Boutefer Date: Thu, 9 Feb 2017 15:32:50 +0100 Subject: [PATCH] Fix a typo (#1192) This typo was causing the issue #1182. --- lib/puma/binder.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puma/binder.rb b/lib/puma/binder.rb index c2702b0e78..cfd55a3bdc 100644 --- a/lib/puma/binder.rb +++ b/lib/puma/binder.rb @@ -299,7 +299,7 @@ def add_ssl_listener(host, port, ctx, if host == "localhost" localhost_addresses.each do |addr| - add_ssl_listener addr, port, optimize_for_latency, backlog + add_ssl_listener addr, port, ctx, optimize_for_latency, backlog end return end