Skip to content

Commit

Permalink
Fix default value of KEEPALIVE_TIME (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
easwars committed Jan 2, 2024
1 parent 523b917 commit e7e993e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/guides/keepalive.md
Expand Up @@ -44,7 +44,7 @@ gRPC HTTP/2 keepalives can be useful in a variety of situations, including but n

| Options | Availability | Description | Client Default | Server Default |
|---|---|---|---|---|
| `KEEPALIVE_TIME` | Client and Server | The interval in milliseconds between PING frames. | INT_MAX (Disabled) | 27200000 (2 hours) |
| `KEEPALIVE_TIME` | Client and Server | The interval in milliseconds between PING frames. | INT_MAX (Disabled) | 7200000 (2 hours) |
| `KEEPALIVE_TIMEOUT` | Client and Server | The timeout in milliseconds for a PING frame to be acknowledged. If sender does not receive an acknowledgment within this time, it will close the connection. | 20000 (20 seconds) | 20000 (20 seconds) |
| `KEEPALIVE_WITHOUT_CALLS` | Client | Is it permissible to send keepalive pings from the client without any outstanding streams. | 0 (false) | N/A |
| `PERMIT_KEEPALIVE_WITHOUT_CALLS` | Server | Is it permissible to send keepalive pings from the client without any outstanding streams. | N/A | 0 (false) |
Expand Down

0 comments on commit e7e993e

Please sign in to comment.