Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix my errors in 2368 [changelog skip] #2370

Merged
merged 1 commit into from Sep 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/puma/binder.rb
Expand Up @@ -53,7 +53,7 @@ def initialize(events, conf = Configuration.new)
attr_reader :ios

# @version 5.0.0
attr_reader :activated_sockets, :envs, :inherited_fds, :listeners, :proto_env, , :unix_paths
attr_reader :activated_sockets, :envs, :inherited_fds, :listeners, :proto_env, :unix_paths

# @version 5.0.0
attr_writer :ios, :listeners
Expand Down
2 changes: 1 addition & 1 deletion lib/puma/dsl.rb
Expand Up @@ -17,7 +17,7 @@ module Puma
# puts config.options[:binds] # => "tcp://127.0.0.1:3001"
#
# Used to load file:
#
#
# $ cat puma_config.rb
# port 3002
#
Expand Down
2 changes: 1 addition & 1 deletion lib/puma/minissl.rb
Expand Up @@ -139,7 +139,7 @@ def write(data)

# This is a temporary fix to deal with websockets code using
# write_nonblock.

# The problem with implementing it properly
# is that it means we'd have to have the ability to rewind
# an engine because after we write+extract, the socket
Expand Down