Skip to content

Commit

Permalink
Skip psql stop in acceptance test for gke (#18023)
Browse files Browse the repository at this point in the history
  • Loading branch information
terencecho authored Oct 17, 2022
1 parent 19a7747 commit e51756b
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 e51756b

Please sign in to comment.