[crash/analyzer] Reduce the number of workers for bugzilla-dev (#2214)

This commit is contained in:
Suhaib Mujahid 2023-09-07 11:57:42 -04:00 коммит произвёл GitHub
Родитель cf2ba41a8d
Коммит edfd1ba73e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -112,6 +112,9 @@ class DevBugzilla(Bugzilla):
API_URL = URL + "/rest/bug"
ATTACHMENT_API_URL = API_URL + "/attachment"
TOKEN = utils.get_login_info()["bz_api_key_dev"]
# Note(suhaib): the dev instance of bugzilla has a smaller cluster, so we
# need to go easy on it.
MAX_WORKERS = 1
class NoCrashReportFoundError(Exception):