Skip to content

Commit

Permalink
Remove linger options (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrudel authored Feb 21, 2024
1 parent b14f971 commit b014f8f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions lib/thousand_island/transports/ssl.ex
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ defmodule ThousandIsland.Transports.SSL do
```elixir
backlog: 1024,
nodelay: true,
linger: {true, 30},
send_timeout: 30_000,
send_timeout_close: true,
reuseaddr: true
Expand Down Expand Up @@ -53,7 +52,6 @@ defmodule ThousandIsland.Transports.SSL do
default_options = [
backlog: 1024,
nodelay: true,
linger: {true, 30},
send_timeout: 30_000,
send_timeout_close: true,
reuseaddr: true
Expand Down
2 changes: 0 additions & 2 deletions lib/thousand_island/transports/tcp.ex
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ defmodule ThousandIsland.Transports.TCP do
```elixir
backlog: 1024,
nodelay: true,
linger: {true, 30},
send_timeout: 30_000,
send_timeout_close: true,
reuseaddr: true
Expand Down Expand Up @@ -51,7 +50,6 @@ defmodule ThousandIsland.Transports.TCP do
default_options = [
backlog: 1024,
nodelay: true,
linger: {true, 30},
send_timeout: 30_000,
send_timeout_close: true,
reuseaddr: true
Expand Down

0 comments on commit b014f8f

Please sign in to comment.