mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Ignore errors on updating corporation details, avoids the DS1 issue for the moment
This commit is contained in:
@@ -31,4 +31,8 @@ class UpdateAPIs():
|
||||
acc.save()
|
||||
|
||||
for corp in EVEPlayerCorporation.objects.all():
|
||||
corp.query_and_update_corp()
|
||||
try:
|
||||
corp.query_and_update_corp()
|
||||
except:
|
||||
self._logger.error('Error updating %s' % corp)
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user