Skip to content

Commit

Permalink
chore: dep update
Browse files Browse the repository at this point in the history
  • Loading branch information
sureshg committed May 10, 2024
1 parent 579cd56 commit e1a0658
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ intellij-markdown = "0.7.0"
# Plugin versions
benmanes = "0.51.0"
foojay-resolver = "0.8.0"
gradle-develocity = "3.17.2"
gradle-develocity = "3.17.3"
nexus-publish = "2.0.0"
shadow = "8.1.1"
spotless = "6.25.0"
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/dev/suresh/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ fun summary(args: List<String>) = buildString {
s.setOption(StandardSocketOptions.SO_REUSEADDR, true)
s.setOption(StandardSocketOptions.SO_REUSEPORT, true)
s.setOption(StandardSocketOptions.SO_KEEPALIVE, true)
// Disable the Nagle algorithm
// s.setOption(StandardSocketOptions.TCP_NODELAY, true)
// Disable the Nagle algorithm as using it would hurt latency.
s.setOption(StandardSocketOptions.TCP_NODELAY, true)
// s.setOption(StandardSocketOptions.SO_RCVBUF, 4096)
s.soTimeout = 100
s.connect(InetSocketAddress("localhost", 12345), 100)
Expand Down

0 comments on commit e1a0658

Please sign in to comment.