File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
airbyte-db/src/main/java/io/airbyte/db Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ public class Databases {
57
57
LOGGER .info ("Testing config database connection..." );
58
58
return database .query (ctx -> ctx .fetchExists (select ().from ("information_schema.tables" )));
59
59
} catch (Exception e ) {
60
+ LOGGER .info ("Unsuccessful connection to config database" , e );
60
61
return false ;
61
62
}
62
63
};
Original file line number Diff line number Diff line change @@ -16,12 +16,11 @@ mkdir -p /tmp/airbyte_local
16
16
17
17
# Detach so we can run subsequent commands
18
18
VERSION=dev TRACKING_STRATEGY=logging docker-compose up -d
19
- trap ' echo "docker-compose logs:" && docker-compose logs -t --tail 150 && docker-compose down && docker rm -f $(docker ps -q --filter name=airbyte_ci_pg)' EXIT
19
+ trap ' echo "docker-compose logs:" && docker-compose logs -t --tail 1000 && docker-compose down && docker rm -f $(docker ps -q --filter name=airbyte_ci_pg)' EXIT
20
20
21
21
docker run -d -p 5433:5432 -e POSTGRES_PASSWORD=secret_password -e POSTGRES_DB=airbyte_ci --name airbyte_ci_pg postgres
22
22
echo " Waiting for services to begin"
23
23
sleep 30 # TODO need a better way to wait
24
24
25
25
echo " Running e2e tests via gradle"
26
26
SUB_BUILD=PLATFORM ./gradlew --no-daemon :airbyte-e2e-testing:e2etest
27
-
You can’t perform that action at this time.
0 commit comments