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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2023-09-27 16:30:15 +0300
committerToon Claes <toon@gitlab.com>2023-09-27 16:30:15 +0300
commitc479c671b6918b4665e7735183781db187f7fd05 (patch)
tree8095f46f45cf6b2418ef77a023029c7e45ee7ce9
parent8bf7e67d04e0b70b8684b73eb8c7ffd2c3e8888e (diff)
parent89ceed0775da605114479b289ef57c397327ed22 (diff)
Merge branch 'qmnguyen0711/enable-gitaly_use_resizable_semaphore_in_concurrency_limiter-flag' into 'master'
Enable use_resizable_semaphore_in_concurrency_limiter flag by default See merge request https://gitlab.com/gitlab-org/gitaly/-/merge_requests/6413 Merged-by: Toon Claes <toon@gitlab.com> Approved-by: Toon Claes <toon@gitlab.com> Co-authored-by: Quang-Minh Nguyen <qmnguyen@gitlab.com>
-rw-r--r--internal/featureflag/ff_use_resizable_semaphore_in_concurrency_limiter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/featureflag/ff_use_resizable_semaphore_in_concurrency_limiter.go b/internal/featureflag/ff_use_resizable_semaphore_in_concurrency_limiter.go
index 07139b218..86a079b90 100644
--- a/internal/featureflag/ff_use_resizable_semaphore_in_concurrency_limiter.go
+++ b/internal/featureflag/ff_use_resizable_semaphore_in_concurrency_limiter.go
@@ -8,5 +8,5 @@ var UseResizableSemaphoreInConcurrencyLimiter = NewFeatureFlag(
"use_resizable_semaphore_in_concurrency_limiter",
"v16.5.0",
"https://gitlab.com/gitlab-org/gitaly/-/issues/5581",
- false,
+ true,
)