Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix comments #1926

Merged
merged 1 commit into from
Jul 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions context/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ type ConfigurationReadOnly interface {
GetSocketSharding() bool
// GetKeepAlive returns the KeepAlive field.
GetKeepAlive() time.Duration
// GetKeepAlive returns the Timeout field.
// GetTimeout returns the Timeout field.
GetTimeout() time.Duration
// GetKeepAlive returns the TimeoutMessage field.
// GetTimeoutMessage returns the TimeoutMessage field.
GetTimeoutMessage() string
// GetDisablePathCorrection returns the DisablePathCorrection field
GetDisablePathCorrection() bool
Expand All @@ -38,7 +38,7 @@ type ConfigurationReadOnly interface {
GetFireMethodNotAllowed() bool
// GetDisableAutoFireStatusCode returns the DisableAutoFireStatusCode field.
GetDisableAutoFireStatusCode() bool
// ResetOnFireErrorCode retruns the ResetOnFireErrorCode field.
// GetResetOnFireErrorCode returns the ResetOnFireErrorCode field.
GetResetOnFireErrorCode() bool

// GetEnableOptimizations returns the EnableOptimizations field.
Expand All @@ -60,7 +60,7 @@ type ConfigurationReadOnly interface {
// GetPostMaxMemory returns the PostMaxMemory field.
GetPostMaxMemory() int64

// GetTranslateLanguageContextKey returns the LocaleContextKey field.
// GetLocaleContextKey returns the LocaleContextKey field.
GetLocaleContextKey() string
// GetLanguageContextKey returns the LanguageContextKey field.
GetLanguageContextKey() string
Expand Down