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
14 changes: 7 additions & 7 deletions tests/integration/sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ var (
"port": float64(6379),
"server_name": nil,
"ssl": false,
"ssl_verify": false,
"ssl_verify": true,
"timeout": float64(2000),
"username": nil,
},
Expand Down Expand Up @@ -5641,7 +5641,7 @@ func testSyncSkipConsumersKonnectImpl(t *testing.T) {
"sentinel_username": nil,
"server_name": nil,
"ssl": false,
"ssl_verify": false,
"ssl_verify": true,
"timeout": float64(2000),
"username": nil,
},
Expand Down Expand Up @@ -5699,7 +5699,7 @@ func testSyncSkipConsumersKonnectImpl(t *testing.T) {
"sentinel_username": nil,
"server_name": nil,
"ssl": false,
"ssl_verify": false,
"ssl_verify": true,
"timeout": float64(2000),
"username": nil,
},
Expand Down Expand Up @@ -5757,7 +5757,7 @@ func testSyncSkipConsumersKonnectImpl(t *testing.T) {
"sentinel_username": nil,
"server_name": nil,
"ssl": false,
"ssl_verify": false,
"ssl_verify": true,
"timeout": float64(2000),
"username": nil,
},
Expand Down Expand Up @@ -8983,7 +8983,7 @@ func testSyncPartialsPluginsKonnectImpl(t *testing.T) {
"read_timeout": float64(3001),
"send_timeout": float64(2004),
"ssl": bool(false),
"ssl_verify": bool(false),
"ssl_verify": bool(true),
}

t.Run("create a partial and link to a plugin via name", func(t *testing.T) {
Expand Down Expand Up @@ -10541,7 +10541,7 @@ func testSyncPartialsTaggingKonnectImpl(t *testing.T) {
"read_timeout": float64(3001),
"send_timeout": float64(2004),
"ssl": bool(false),
"ssl_verify": bool(false),
"ssl_verify": bool(true),
},
Tags: kong.StringSlice("redis-partials"),
},
Expand All @@ -10567,7 +10567,7 @@ func testSyncPartialsTaggingKonnectImpl(t *testing.T) {
},
"sentinel_role": string("master"),
"ssl": bool(false),
"ssl_verify": bool(false),
"ssl_verify": bool(true),
},
Tags: kong.StringSlice("redis-partials"),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ consumer_groups:
sentinel_username: null
server_name: null
ssl: false
ssl_verify: false
ssl_verify: true
timeout: 2000
username: null
retry_after_jitter_max: 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ consumer_groups:
namespace: tPHO9qtcb99zWWUWxSVDQiUpb7kj59ZQ
redis:
host: example.com
ssl_verify: false
strategy: redis
sync_rate: -1
window_size:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ partials:
- config:
host: example.com
keepalive_backlog: 0
ssl_verify: false
id: 9e060517-7cae-4425-9ff1-1df11d0e9b5a
name: my-partial-ee
type: redis-ee
Expand All @@ -15,7 +16,13 @@ plugins:
- abc-client
client_secret:
- abc-secret
cluster_cache_redis:
ssl_verify: false
hide_credentials: false
issuer: http://example-issuer.com
redis:
ssl_verify: false
session_redis_ssl_verify: false
ssl_verify: false
enabled: true
name: openid-connect
Original file line number Diff line number Diff line change
Expand Up @@ -367,3 +367,5 @@ plugins:
- grpcs
- http
- https
- ws
- wss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ partials:
host: example.com
keepalive_backlog: 0
password: redis-pass
ssl_verify: false
username: redis-user
id: 65a8785d-2e4a-4adb-8805-63e1141219cd
name: my-partial-ee
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ plugins:
minute: 10
redis:
port: 6000
ssl_verify: false
redis_port: 6000
redis_ssl_verify: false
enabled: true
name: rate-limiting
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@ _konnect:
plugins:
- config:
minute: 10
redis:
ssl_verify: false
redis_ssl_verify: false
enabled: true
name: rate-limiting
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ services:
- grpcs
- http
- https
- ws
- wss
- config:
allowed_content_types:
- application/json
Expand Down
Loading