Skip to content

Commit

Permalink
Do not check status of processes on non existing container
Browse files Browse the repository at this point in the history
  • Loading branch information
kokosing committed Jun 17, 2019
1 parent 1e31c49 commit 00ea23b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion presto-hive-hadoop2/bin/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function retry() {
}

function hadoop_master_container(){
docker-compose -f "${DOCKER_COMPOSE_LOCATION}" ps -q hadoop-master
docker-compose -f "${DOCKER_COMPOSE_LOCATION}" ps -q hadoop-master | grep .
}

function hadoop_master_ip() {
Expand Down
2 changes: 1 addition & 1 deletion presto-product-tests/bin/run_on_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function retry() {
}

function hadoop_master_container(){
environment_compose ps -q hadoop-master
environment_compose ps -q hadoop-master | grep .
}

function check_hadoop() {
Expand Down

0 comments on commit 00ea23b

Please sign in to comment.