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
I'm trying to delete a large number of entities from an Azure Table asynchronously
I have a method that returns a reference of type AsyncGenerator[Tuple[TransactionOperation, TableEntity], None] representing all the records to be deleted
The TableClient.submit_transaction method throws an error TypeError: 'async_generator' object is not iterable
The TableClient.submit_transaction method should be updated to handle AsyncIterables or
A new method should be made available to accept Async iterables
This can be done by adding 'async for' alongside the for
I'm trying to delete a large number of entities from an Azure Table asynchronously
I have a method that returns a reference of type
AsyncGenerator[Tuple[TransactionOperation, TableEntity], None]representing all the records to be deletedThe TableClient.submit_transaction method throws an error
TypeError: 'async_generator' object is not iterableThe TableClient.submit_transaction method should be updated to handle AsyncIterables
or
A new method should be made available to accept Async iterables
This can be done by adding 'async for' alongside the
forazure-sdk-for-python/sdk/tables/azure-data-tables/azure/data/tables/aio/_table_client_async.py
Line 700 in eb5ece7