test(e2e): Fix where max_page_size is defined (#4381)

pull/4383/head
Michael Li 2 years ago committed by GitHub
parent be252e3447
commit 293952a698
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -6,6 +6,9 @@ disable_mlock = true
controller {
name = "boundary-controller-${id}"
description = "Enos Boundary controller ${id}"
max_page_size = ${max_page_size}
database {
url = "postgresql://${dbuser}:${dbpass}@${dbhost}:${dbport}/${dbname}"
max_open_connections = ${db_max_open_connections}
@ -20,8 +23,6 @@ listener "tcp" {
purpose = "api"
tls_disable = true
max_page_size = ${max_page_size}
# Uncomment to enable CORS for the Admin UI. Be sure to set the allowed origin(s)
# to appropriate values.
#cors_enabled = true

@ -6,6 +6,9 @@ disable_mlock = true
controller {
name = "boundary-controller-${id}"
description = "Enos Boundary controller ${id}"
max_page_size = ${max_page_size}
database {
url = "postgresql://${dbuser}:${dbpass}@${dbhost}:${dbport}/${dbname}"
max_open_connections = ${db_max_open_connections}
@ -20,8 +23,6 @@ listener "tcp" {
purpose = "api"
tls_disable = true
max_page_size = ${max_page_size}
# Uncomment to enable CORS for the Admin UI. Be sure to set the allowed origin(s)
# to appropriate values.
#cors_enabled = true

Loading…
Cancel
Save