Skip to content
Merged
Show file tree
Hide file tree
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: 8 additions & 0 deletions tests/integration/sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1761,6 +1761,7 @@ var (
"compound_identifier": nil,
"consumer_groups": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"counter_key": nil,
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
"error_code": float64(429),
Expand Down Expand Up @@ -1813,6 +1814,7 @@ var (
"compound_identifier": nil,
"consumer_groups": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"counter_key": nil,
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
"error_code": float64(429),
Expand Down Expand Up @@ -1862,6 +1864,7 @@ var (
"compound_identifier": nil,
"consumer_groups": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"counter_key": nil,
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
"error_code": float64(429),
Expand Down Expand Up @@ -6086,6 +6089,7 @@ func testSyncSkipConsumersKonnectImpl(t *testing.T) {
Config: kong.Configuration{
"compound_identifier": nil,
"consumer_groups": nil,
"counter_key": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
Expand Down Expand Up @@ -6144,6 +6148,7 @@ func testSyncSkipConsumersKonnectImpl(t *testing.T) {
Config: kong.Configuration{
"compound_identifier": nil,
"consumer_groups": nil,
"counter_key": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
Expand Down Expand Up @@ -6202,6 +6207,7 @@ func testSyncSkipConsumersKonnectImpl(t *testing.T) {
Config: kong.Configuration{
"compound_identifier": nil,
"consumer_groups": nil,
"counter_key": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
Expand Down Expand Up @@ -11321,6 +11327,7 @@ func testSyncPartialsTaggingKonnectImpl(t *testing.T) {
Config: kong.Configuration{
"compound_identifier": nil,
"consumer_groups": nil,
"counter_key": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
Expand Down Expand Up @@ -11365,6 +11372,7 @@ func testSyncPartialsTaggingKonnectImpl(t *testing.T) {
"compound_identifier": nil,
"consumer_groups": nil,
"dictionary_name": string("kong_rate_limiting_counters"),
"counter_key": nil,
"disable_penalty": bool(false),
"enforce_consumer_groups": bool(false),
"error_code": float64(429),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ consumer_groups:
- config:
compound_identifier: null
consumer_groups: null
counter_key: null
dictionary_name: kong_rate_limiting_counters
disable_penalty: false
enforce_consumer_groups: false
Expand Down
Loading