Revision f186910c43c57dbd9d46242025605c912115bd90 authored by Antoine R. Dumont (@ardumont) on 20 April 2021, 13:47:08 UTC, committed by Antoine R. Dumont (@ardumont) on 20 April 2021, 13:50:19 UTC
The staging scheduler runner was slow when fetching task due to that missing index.

Related to T3271#63831
1 parent f33f743
Raw File
setup.cfg
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
ignore = E203,E231,W503
max-line-length = 88
back to top