https://forge.softwareheritage.org/source/swh-scheduler.git
Revision c92ead5875ecfd96a164eec1803398adec6eb8a8 authored by Nicolas Dandrimont on 21 January 2021, 16:31:43 UTC, committed by Valentin Lorentz on 26 January 2021, 12:20:39 UTC
The earlier implementation would just schedule new visits for origins
forever, regardless of whether they were already scheduled or not.
1 parent 2b39cbc
Raw File
Tip revision: c92ead5875ecfd96a164eec1803398adec6eb8a8 authored by Nicolas Dandrimont on 21 January 2021, 16:31:43 UTC
grab_next_visits: don't re-schedule visits too fast
Tip revision: c92ead5
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