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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-02-11 00:09:24 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-11 00:09:24 +0300
commit02c3b2af448be6a5004e8d833cbcbf8e5f185210 (patch)
tree27359dc5c21a8901c9eb95a0101cb97087b1f4ac /doc/development/transient
parent577bb49691b11bc8ebae3a4966153ed39af60d87 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/transient')
-rw-r--r--doc/development/transient/prevention-patterns.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/development/transient/prevention-patterns.md b/doc/development/transient/prevention-patterns.md
index 0a466a85445..4c1e4d373e7 100644
--- a/doc/development/transient/prevention-patterns.md
+++ b/doc/development/transient/prevention-patterns.md
@@ -8,6 +8,15 @@ info: To determine the technical writer assigned to the Stage/Group associated w
This page will cover architectural patterns and tips for developers to follow to prevent [transient bugs.](https://about.gitlab.com/handbook/engineering/quality/issue-triage/#transient-bugs)
+## Common root causes
+
+We've noticed a few root causes that come up frequently when addressing transient bugs.
+
+- Needs better state management in the backend or frontend.
+- Frontend code needs improvements.
+- Lack of test coverage.
+- Race conditions.
+
## Frontend
### Don't rely on response order