Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2018-02-13 20:50:19 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2018-02-13 20:50:19 +0300
commitdd8f56e86296f8ba6769075ef6bc6e28264706b6 (patch)
tree095d02425b0b88552dd4bec513975afda50cf0f6 /doc
parentecd77bd0cf3eb6c8b8ddaa811ac3b9561a391692 (diff)
parente3bd674e81d565ef3bd399a70b3039316b518693 (diff)
Merge branch 'whitelisting' into 'master'
Remove Sentry reporting for query limiting See merge request gitlab-org/gitlab-ce!17092
Diffstat (limited to 'doc')
-rw-r--r--doc/development/query_count_limits.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/development/query_count_limits.md b/doc/development/query_count_limits.md
index ebb6e0c2dac..310e3faf61b 100644
--- a/doc/development/query_count_limits.md
+++ b/doc/development/query_count_limits.md
@@ -1,8 +1,7 @@
# Query Count Limits
-Each controller or API endpoint is allowed to execute up to 100 SQL queries. In
-a production environment we'll only log an error in case this threshold is
-exceeded, but in a test environment we'll raise an error instead.
+Each controller or API endpoint is allowed to execute up to 100 SQL queries and
+in test environments we'll raise an error when this threshold is exceeded.
## Solving Failing Tests