blob: b5807921e4a363f7db82bf41bd4efddcbed6e518 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package config
import "time"
// General is the part of the config plugin which contains general for the whole RR2 parameters
// For example - http timeouts, headers sizes etc and also graceful shutdown timeout should be the same across whole application
type General struct {
// GracefulTimeout for the temporal and http
GracefulTimeout time.Duration
}
|