Skip to content

Commit

Permalink
remove the task group filter
Browse files Browse the repository at this point in the history
  • Loading branch information
meln1k committed Oct 22, 2024
1 parent bdad361 commit 1b5ce12
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions fixbackend/cloud_accounts/azure_subscription_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,7 @@ async def _ping_new_subscriptions(self) -> None:

async with asyncio.TaskGroup() as tg:
for azure_credential in created_less_than_30_minutes_ago:
# Only ping accounts that failed access previously
if azure_credential.can_access_azure_account is False:
tg.create_task(self._import_subscriptions(azure_credential))
tg.create_task(self._import_subscriptions(azure_credential))

async def create_user_app_registration(
self,
Expand Down

0 comments on commit 1b5ce12

Please sign in to comment.