X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/afbea0d985d273232291f03f343baed727393108..b0cbacbab436749a2a94e5bb7a8b9400641bed35:/lib/config/export.go diff --git a/lib/config/export.go b/lib/config/export.go index 44fd559418..31ccc994b9 100644 --- a/lib/config/export.go +++ b/lib/config/export.go @@ -37,8 +37,8 @@ func ExportJSON(w io.Writer, cluster *arvados.Cluster) error { return json.NewEncoder(w).Encode(m) } -// whitelist classifies configs as safe/unsafe to reveal to -// unauthenticated clients. +// whitelist classifies configs as safe/unsafe to reveal through the API +// endpoint. Note that endpoint does not require authentication. // // Every config entry must either be listed explicitly here along with // all of its parent keys (e.g., "API" + "API.RequestTimeout"), or @@ -65,13 +65,15 @@ var whitelist = map[string]bool{ "API.FreezeProjectRequiresDescription": true, "API.FreezeProjectRequiresProperties": true, "API.FreezeProjectRequiresProperties.*": true, - "API.LockBeforeUpdate": false, "API.KeepServiceRequestTimeout": false, - "API.MaxConcurrentRequests": false, + "API.LockBeforeUpdate": false, "API.LogCreateRequestFraction": false, + "API.MaxConcurrentRequests": false, "API.MaxIndexDatabaseRead": false, "API.MaxItemsPerResponse": true, "API.MaxKeepBlobBuffers": false, + "API.MaxQueuedRequests": false, + "API.MaxQueueTimeForLockRequests": false, "API.MaxRequestAmplification": false, "API.MaxRequestSize": true, "API.MaxTokenLifetime": false,