This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new fab547c Camel-Kubernetes: Fixed CS
fab547c is described below
commit fab547c464874a287349dc703d4dfd8b92a59b19
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue May 5 16:47:36 2020 +0200
Camel-Kubernetes: Fixed CS
---
.../apache/camel/component/kubernetes/hpa/KubernetesHPAConsumer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/hpa/KubernetesHPAConsumer.java
b/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/hpa/KubernetesHPAConsumer.java
index d1f546b..a1a377c 100644
---
a/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/hpa/KubernetesHPAConsumer.java
+++
b/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/hpa/KubernetesHPAConsumer.java
@@ -90,7 +90,7 @@ public class KubernetesHPAConsumer extends DefaultConsumer {
@Override
public void run() {
- MixedOperation<HorizontalPodAutoscaler,
HorizontalPodAutoscalerList, DoneableHorizontalPodAutoscaler,
Resource<HorizontalPodAutoscaler, DoneableHorizontalPodAutoscaler>> w =
getEndpoint()
+ MixedOperation<HorizontalPodAutoscaler,
HorizontalPodAutoscalerList, DoneableHorizontalPodAutoscaler,
Resource<HorizontalPodAutoscaler, DoneableHorizontalPodAutoscaler>> w =
getEndpoint()
.getKubernetesClient().autoscaling().v1().horizontalPodAutoscalers();
if
(ObjectHelper.isNotEmpty(getEndpoint().getKubernetesConfiguration().getNamespace()))
{
w.inNamespace(getEndpoint().getKubernetesConfiguration().getNamespace());