Skip to content

Commit

Permalink
Change port for acceptance test destination db (#18391)
Browse files Browse the repository at this point in the history
  • Loading branch information
terencecho authored and nataly committed Nov 3, 2022
1 parent b52bab6 commit 786109f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static Database getSourceDatabase() {

public static Database getDestinationDatabase() {
return new Database(DSLContextFactory.create(USERNAME, PASSWORD, DatabaseDriver.POSTGRESQL.getDriverClassName(),
"jdbc:postgresql://localhost:3000/postgresdb", SQLDialect.POSTGRES));
"jdbc:postgresql://localhost:4000/postgresdb", SQLDialect.POSTGRES));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ kubectl port-forward svc/airbyte-server-svc 8001:8001 --namespace=$NAMESPACE &

kubectl port-forward svc/postgres-source-svc 2000:5432 --namespace=$NAMESPACE &

kubectl port-forward svc/postgres-destination-svc 3000:5432 --namespace=$NAMESPACE &
kubectl port-forward svc/postgres-destination-svc 4000:5432 --namespace=$NAMESPACE &

sleep 10s

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ kubectl port-forward svc/airbyte-server-svc 8001:8001 --namespace=$NAMESPACE &

kubectl port-forward svc/postgres-source-svc 2000:5432 --namespace=$NAMESPACE &

kubectl port-forward svc/postgres-destination-svc 3000:5432 --namespace=$NAMESPACE &
kubectl port-forward svc/postgres-destination-svc 4000:5432 --namespace=$NAMESPACE &

sleep 10s

Expand Down

0 comments on commit 786109f

Please sign in to comment.