Skip to content

Commit

Permalink
Skip psql stop in acceptance test for gke (airbytehq#18023)
Browse files Browse the repository at this point in the history
  • Loading branch information
terencecho authored and jhammarstedt committed Oct 31, 2022
1 parent 69f2277 commit b0c163a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,9 @@ public void cleanup() {
for (final UUID destinationId : destinationIds) {
deleteDestination(destinationId);
}
destinationPsql.stop();
if (!isGke) {
destinationPsql.stop();
}
} catch (final Exception e) {
LOGGER.error("Error tearing down test fixtures:", e);
}
Expand Down

0 comments on commit b0c163a

Please sign in to comment.