You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1274 introduced a new bug to Anitya. The threads are timing out in check_service.py.
This is probably caused by not doing session.commit() when there are no new versions and the session is just hanging there. This isn't issue during the test, but it's issue in check_service.py.
This should be easily fixed by changing the conditions in anitya.lib.utilities.py.
The text was updated successfully, but these errors were encountered:
Session.commit() needs to be called every time there isn't any test run
not only if there are new versions found.
Fixes#1284
Signed-off-by: Michal Konečný <[email protected]>
Session.commit() needs to be called every time there isn't any test run
not only if there are new versions found.
Fixes#1284
Signed-off-by: Michal Konečný <[email protected]>
#1274 introduced a new bug to Anitya. The threads are timing out in
check_service.py
.This is probably caused by not doing
session.commit()
when there are no new versions and the session is just hanging there. This isn't issue during the test, but it's issue incheck_service.py
.This should be easily fixed by changing the conditions in
anitya.lib.utilities.py
.The text was updated successfully, but these errors were encountered: