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.
limit_req_zone
1 parent 57e6899 commit 2455bfdCopy full SHA for 2455bfd
internal/ingress/controller/store/objectref.go
@@ -112,7 +112,7 @@ func (o *objectRefMap) Reference(ref string) []string {
112
if !ok {
113
return make([]string, 0)
114
}
115
- return consumers.UnsortedList()
+ return sets.List(consumers)
116
117
118
// ReferencedBy returns all objects referenced by the given object.
internal/ingress/controller/template/template.go
@@ -849,7 +849,7 @@ func buildRateLimitZones(input interface{}) []string {
849
850
851
852
- return zones.UnsortedList()
+ return sets.List(zones)
853
854
855
// buildRateLimit produces an array of limit_req to be used inside the Path of
0 commit comments