Fix default types

Related: https://pagure.io/koji/issue/4308
This commit is contained in:
Tomas Kopecek 2025-02-06 15:21:38 +01:00
parent 7d2a29c162
commit 3f8f697a1c

View file

@ -524,9 +524,9 @@ def load_config(environ):
['RepoRetries', 'integer', 3],
['RequestCleanTime', 'integer', 60 * 24], # in minutes
['AllowNewRepo', 'bool', True],
['RepoLag', 'int', 3600],
['RepoAutoLag', 'int', 7200],
['RepoLagWindow', 'int', 600],
['RepoLag', 'integer', 3600],
['RepoAutoLag', 'integer', 7200],
['RepoLagWindow', 'integer', 600],
['RepoQueueUser', 'str', 'kojira'],
['DebuginfoTags', 'str', ''],
['SourceTags', 'str', ''],