We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db05606 commit dd3f170Copy full SHA for dd3f170
internal/mode/static/nginx/config/upstreams.go
@@ -169,15 +169,10 @@ func (g GeneratorImpl) createUpstream(
169
}
170
171
return http.Upstream{
172
- Name: up.Name,
173
- ZoneSize: zoneSize,
174
- Servers: upstreamServers,
175
- KeepAlive: http.UpstreamKeepAlive{
176
- Connections: upstreamPolicySettings.KeepAlive.Connections,
177
- Requests: upstreamPolicySettings.KeepAlive.Requests,
178
- Time: upstreamPolicySettings.KeepAlive.Time,
179
- Timeout: upstreamPolicySettings.KeepAlive.Timeout,
180
- },
+ Name: up.Name,
+ ZoneSize: zoneSize,
+ Servers: upstreamServers,
+ KeepAlive: upstreamPolicySettings.KeepAlive,
181
182
183
0 commit comments