Skip to content

Commit

Permalink
Fix missing log_writer
Browse files Browse the repository at this point in the history
  • Loading branch information
nateberkopec authored and JuanitoFatas committed Sep 9, 2022
1 parent 0451a2c commit 96a7c9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/puma/minissl/context_builder.rb
@@ -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
Expand Down Expand Up @@ -75,7 +75,7 @@ def context

private

attr_reader :params, :events
attr_reader :params, :log_writer
end
end
end

0 comments on commit 96a7c9b

Please sign in to comment.