Merge pull request #18084 from influxdata/chore/bump-flux-response

chore(shared/constants): increase flux response limit to 27MB
pull/18090/head
Michael Desa 2020-05-13 12:20:43 -07:00 committed by GitHub
commit 4d2ebe9452
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ export const CLOUD_LOGOUT_PATH = '/logout'
export const CLOUD_USERS_PATH = '/users'
export const FLUX_RESPONSE_BYTES_LIMIT = CLOUD
? 10 * 1024 * 1024 // 10 MiB
? 27 * 1024 * 1024 // 27 MiB (desa: this was determined by looking at queries responses in the cloud app)
: 100 * 1024 * 1024 // 100 MiB
export const VIS_SIG_DIGITS = 4