mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Remove wait on character update
This commit is contained in:
@@ -110,7 +110,7 @@ def import_apikey_func(api_userid, api_key, user=None, force_cache=False):
|
||||
# Process the account's character list
|
||||
charlist = account.characters.all().values_list('id', flat=True)
|
||||
for char in doc['result']['characters']:
|
||||
import_eve_character.delay(char['characterID'], api_key, api_userid, callback=link_char_to_account.subtask(account=account.id)).wait()
|
||||
import_eve_character.delay(char['characterID'], api_key, api_userid, callback=link_char_to_account.subtask(account=account.id))
|
||||
|
||||
return account
|
||||
|
||||
|
||||
Reference in New Issue
Block a user