1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Fix missing log_writer

This commit is contained in:
Nate Berkopec 2022-02-09 14:41:55 -08:00
parent 8a4ef0c16c
commit 15dd1166ac
No known key found for this signature in database
GPG key ID: 19616755F4328D71

View file

@ -1,9 +1,9 @@
module Puma
module MiniSSL
class ContextBuilder
def initialize(params, events)
def initialize(params, log_writer)
@params = params
@events = events
@log_writer = log_writer
end
def context
@ -75,7 +75,7 @@ module Puma
private
attr_reader :params, :events
attr_reader :params, :log_writer
end
end
end