Skip to content

Commit 809a69a

Browse files
authored
[Bugfix] Propagate Gateway Idle Timeout (#1845)
1 parent 297c556 commit 809a69a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- (Feature) (Platform) Identity Endpoint
88
- (Feature) (Platform) Authz V1 Types
99
- (Maintenance) Allow GRPC Marshal Opts
10+
- (Bugfix) Propagate Gateway Idle Timeout
1011

1112
## [1.2.46](https://github.com/arangodb/kube-arangodb/tree/1.2.46) (2025-02-24)
1213
- (Bugfix) Clean Phase change properly during upgrade

pkg/deployment/resources/gateway/gateway_config_destination.go

+1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ func (c *ConfigDestination) appendRouteAction(route *routeAPI.Route, name string
208208
UpgradeConfigs: c.getUpgradeConfigs().render(),
209209
PrefixRewrite: c.GetPath(),
210210
Timeout: durationpb.New(c.GetTimeout()),
211+
IdleTimeout: durationpb.New(c.GetTimeout()),
211212
},
212213
}
213214
return nil

0 commit comments

Comments
 (0)