Skip to content

Commit

Permalink
Merge pull request #383 from containers/renovate/major-ci-vm-image
Browse files Browse the repository at this point in the history
chore(deps): update dependency containers/automation_images to v20240320
  • Loading branch information
openshift-merge-bot[bot] authored Mar 22, 2024
2 parents 53b238b + 276329b commit 6016b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
FEDORA_NAME: "fedora-39"

# Google-cloud VM Images
IMAGE_SUFFIX: "c20240125t184057z-f39f38d13"
IMAGE_SUFFIX: "c20240320t153921z-f39f38d13"
FEDORA_CACHE_IMAGE_NAME: "fedora-podman-py-${IMAGE_SUFFIX}"


Expand Down
3 changes: 1 addition & 2 deletions podman/domain/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,7 @@ def export(self, chunk_size: int = api.DEFAULT_CHUNK_SIZE) -> Iterator[bytes]:
response = self.client.get(f"/containers/{self.id}/export", stream=True)
response.raise_for_status()

for out in response.iter_content(chunk_size=chunk_size):
yield out
yield from response.iter_content(chunk_size=chunk_size)

def get_archive(
self, path: str, chunk_size: int = api.DEFAULT_CHUNK_SIZE
Expand Down

0 comments on commit 6016b7d

Please sign in to comment.