chore(shared/constants): increase flux response limit to 27MB

This was detemined by looking at the 99th percentile of query responses.
pull/18084/head
Michael Desa 2020-05-13 09:01:07 -07:00
parent 8365f7617f
commit ddefe22ae5
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