Skip to content

Commit

Permalink
KeepAliveTimeout -> ClientKeepAliveTimeout
Browse files Browse the repository at this point in the history
  • Loading branch information
kate-osborn committed Mar 25, 2024
1 parent 079a900 commit 5e78f3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/proposals/client-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ type ClientKeepAlive struct {
// +optional
Time *Duration `json:"time,omitempty"`

// Timeout defines the keep-alive timeouts.
// Timeout defines the keep-alive timeouts for clients.
// +optional
Timeout *KeepAliveTimeout `json:"timeout,omitempty"`
Timeout *ClientKeepAliveTimeout `json:"timeout,omitempty"`
}

// KeepAliveTimeout defines the timeouts related to keep-alive client connections.
type KeepAliveTimeout struct {
// ClientKeepAliveTimeout defines the timeouts related to keep-alive client connections.
type ClientKeepAliveTimeout struct {
// Server sets the timeout during which a keep-alive client connection will stay open on the server side.
// The zero value disables keep-alive client connections.
// +optional
Expand Down

0 comments on commit 5e78f3f

Please sign in to comment.