Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Nits and simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbelvin committed Jul 18, 2019
1 parent 22187d1 commit 0971ab5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
- 9090:9090

db:
image: gcr.io/trillian-opensource-ci/db_server
image: gcr.io/trillian-opensource-ci/db_server:latest
restart: always
ports:
- "3306"
Expand Down
8 changes: 4 additions & 4 deletions scripts/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d
trap "docker-compose down" INT EXIT

set +e
wget -t 60 --spider --retry-connrefused --waitretry=1 0.0.0.0:443 || sleep 2
wget -t 60 --spider --retry-on-http-error=404 1 0.0.0.0:443/v1/directories/default
wget -T 60 --spider --retry-connrefused localhost:443
wget -T 60 --spider --retry-on-http-error=404 --no-check-certificate https://localhost/v1/directories/default
set -e

PASSWORD="foobar"
go run ./cmd/keytransparency-client/main.go authorized-keys create-keyset --password=${PASSWORD}
go run ./cmd/keytransparency-client/main.go post [email protected] \
go run ./cmd/keytransparency-client authorized-keys create-keyset --password=${PASSWORD}
go run ./cmd/keytransparency-client post [email protected] \
--insecure \
--data='dGVzdA==' \
--password=${PASSWORD} \
Expand Down

0 comments on commit 0971ab5

Please sign in to comment.