Skip to content

Commit

Permalink
Fix Horicromtal Deadlock Test (#7131)
Browse files Browse the repository at this point in the history
  • Loading branch information
THWiseman committed May 12, 2023
1 parent 17efd59 commit 62509af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ci/bin/get_cromwell_hosts.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Based on https://stackoverflow.com/a/39895650
from __future__ import print_function
from docker import Client
from docker import APIClient
import os

cli = Client(base_url='unix://var/run/docker.sock')
cli = APIClient(base_url='unix://var/run/docker.sock')

our_hostname = os.environ.get("HOSTNAME")

Expand Down
2 changes: 1 addition & 1 deletion src/ci/bin/test-deadlock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

pip3 install docker-py
pip3 install docker

cromwell_hosts_file="${CROMWELL_BUILD_RESOURCES_DIRECTORY}/cromwell_hosts.txt"

Expand Down

0 comments on commit 62509af

Please sign in to comment.