Uh oh!
There was an error while loading. Please reload this page.
feat: add if*generation*match args into Bucket.delete_blobs() - #130
Conversation
IlyaFaer
commented
May 5, 2020
This should be merged only after merging #123, as this branch based on the one from PR 123. |
| if_generation_not_match=next(if_generation_not_match, None), | ||
| if_metageneration_match=next(if_metageneration_match, None), | ||
| if_metageneration_not_match=next(if_metageneration_not_match, None), | ||
| ) |
There was a problem hiding this comment.
In this method we're converting args into iterators to be able to take next item (or None if there is no next item, or items at all) with a single line.
IlyaFaer
commented
May 5, 2020
I don't see any system tests for this method. Maybe it should be added to check generation match args are working fine? |
This reverts commit b982094.
andrewsg
commented
May 20, 2020
Since #123 has been merged, I be ready to review this once the branch is updated and conflicts resolved. Thanks! |
IlyaFaer
commented
May 21, 2020
@andrewsg, I've pushed some changes to check if generation match args length differs from |
Uh oh!
There was an error while loading. Please reload this page.
Towards #127