diff options
author | zeripath <art27@cantab.net> | 2021-10-17 12:43:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-17 12:43:25 +0100 |
commit | 7117c7774ae1c1003c95d3df8dfaa5bd7270165d (patch) | |
tree | eab8f310ad065af318a5c4dedb7efdb6251436cb /custom | |
parent | b9a2f263b8a4c19b01f3440b52f0f90f3c1ee072 (diff) | |
download | gitea-7117c7774ae1c1003c95d3df8dfaa5bd7270165d.tar.gz gitea-7117c7774ae1c1003c95d3df8dfaa5bd7270165d.zip |
Make the Mirror Queue a queue (#17326)
Convert the old mirror syncing queue to the more modern queue format.
Fix a bug in the from the repo-archive queue PR - the assumption was made that uniqueness could be enforced with by checking equality in a map in channel unique queues - however this only works for primitive types - which was the initial intention but is an imperfect. This is fixed by marshalling the data and placing the martialled data in the unique map instead.
The documentation is also updated to add information about the deprecated configuration values.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index bdc42480e4..1753ed2330 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -769,10 +769,10 @@ PATH = ;; Global limit of repositories per user, applied at creation time. -1 means no limit ;MAX_CREATION_LIMIT = -1 ;; -;; Mirror sync queue length, increase if mirror syncing starts hanging +;; Mirror sync queue length, increase if mirror syncing starts hanging (DEPRECATED: please use [queue.mirror] LENGTH instead) ;MIRROR_QUEUE_LENGTH = 1000 ;; -;; Patch test queue length, increase if pull request patch testing starts hanging +;; Patch test queue length, increase if pull request patch testing starts hanging (DEPRECATED: please use [queue.pr_patch_checker] LENGTH instead) ;PULL_REQUEST_QUEUE_LENGTH = 1000 ;; ;; Preferred Licenses to place at the top of the List |