Browse Source

Correct transport compression algorithm in docs (#29645)

We use DEFLATE when compressing byte streams on the transport layer yet
the docs say we use LZF. This commit correct this.
Jason Tedor 7 years ago
parent
commit
a103533f1d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/modules/transport.asciidoc

+ 1 - 1
docs/reference/modules/transport.asciidoc

@@ -41,7 +41,7 @@ addressable from the outside. Defaults to the actual port assigned via
 |`transport.tcp.connect_timeout` |The socket connect timeout setting (in
 time setting format). Defaults to `30s`.
 
-|`transport.tcp.compress` |Set to `true` to enable compression (LZF)
+|`transport.tcp.compress` |Set to `true` to enable compression (`DEFLATE`)
 between all nodes. Defaults to `false`.
 
 |`transport.ping_schedule` | Schedule a regular ping message to ensure that connections are kept alive. Defaults to `5s` in the transport client and `-1` (disabled) elsewhere.