-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
Describe the bug
This library should not assume that it is in charge of shutting down the Http connection. Instead, this should be left to the client app.
In camel k8s we have we have a 'run' option which can be stopped with ctrl+c, upon which all k8s resources are also deleted from the cluster.
This code causes regression, such that these resources can no longer be deleted when executing our shutdown hook ...
public VertxHttpClientFactory() {
this(VertxHttpClientFactory.VertxHolder.INSTANCE);
Runtime.getRuntime().addShutdownHook(new Thread(() -> {
if (this.vertx != null) {
this.vertx.close();
}
}));
}
I checked the other http client variants and it seems that vertx is the only one that installs a shutdown hook. Please consider removing this code and instead rely on higher layers to close the k8s client when appropriate.
Fabric8 Kubernetes Client version
7.0.1
Steps to reproduce
See: https://issues.apache.org/jira/browse/CAMEL-21621
Expected behavior
Using this k8s client in a shutdown hook should be valid
Runtime
Kubernetes (vanilla)
Kubernetes API Server version
1.25.3@latest
Environment
Linux
Fabric8 Kubernetes Client Logs
Additional context
No response