mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
Catch update check failure and proceed, not bomb out
This commit is contained in:
parent
4430d8b01c
commit
7306e1cf69
1 changed files with 4 additions and 1 deletions
|
|
@ -564,7 +564,10 @@ def main():
|
|||
|
||||
logging.info("Processing " + appid + '...')
|
||||
|
||||
checkupdates_app(app)
|
||||
try:
|
||||
checkupdates_app(app)
|
||||
except Exception as e:
|
||||
logging.error("...checkupdate failed for {0} : {1}".format(appid, e))
|
||||
|
||||
logging.info("Finished.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue