Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,11 @@ protected void after(ExtensionContext context) {
iterator.remove();
}

kubernetesClient.close();
// if if client used for infra client, we should not close it
Comment thread
csviri marked this conversation as resolved.
Outdated
// either test or operator should close this client
Comment thread
csviri marked this conversation as resolved.
Outdated
if (getKubernetesClient() != getInfrastructureKubernetesClient()) {
kubernetesClient.close();
}

try {
this.operator.stop();
Expand Down
Loading