Skip to content

Commit

Permalink
tests/e2e: Update requests package
Browse files Browse the repository at this point in the history
- Due to a bug in requests 2.29.0 we need to force update it
to avoid the error:
`Error while fetching server API version: request() got an
unexpected keyword argument 'chunked'`
- See docker/docker-py#3113

Fixes: confidential-containers#206
Signed-off-by: stevenhorsman <steven@uk.ibm.com>
  • Loading branch information
stevenhorsman committed May 4, 2023
1 parent cd1f00b commit 879b7bb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/e2e/ansible/start_docker_registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
- name: Install docker pip
pip:
name: docker
# Due to a bug in requests 2.29.0 we need to force update it
# see https://github.com/docker/docker-py/issues/3113
- name: Update requests
pip:
name: requests
state: latest
- name: Start a docker registry
docker_container:
name: "{{ local_registry_name }}"
Expand Down

0 comments on commit 879b7bb

Please sign in to comment.