Skip to content

Commit

Permalink
Disable discovery of camel-opentelemetry ThreadPoolFactory due to #6642
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton authored and JiriOndrusek committed Nov 19, 2024
1 parent 9816d03 commit b4d283e
Showing 1 changed file with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.quarkus.component.opentelemetry.deployment;

import io.quarkus.deployment.annotations.BuildProducer;
import io.quarkus.deployment.annotations.BuildStep;
import org.apache.camel.quarkus.core.deployment.spi.CamelServiceDestination;
import org.apache.camel.quarkus.core.deployment.spi.CamelServicePatternBuildItem;

/**
* TODO: Remove this class - https://github.com/apache/camel-quarkus/issues/6642
*/
class OpenTelemetryDisableThreadPoolProcessor {
@BuildStep
void disableCamelOpenTelemetryThreadPoolFactory(BuildProducer<CamelServicePatternBuildItem> camelServicePattern) {
camelServicePattern.produce(new CamelServicePatternBuildItem(CamelServiceDestination.DISCOVERY, false,
"META-INF/services/org/apache/camel/thread-pool-factory"));

camelServicePattern.produce(new CamelServicePatternBuildItem(CamelServiceDestination.DISCOVERY, false,
"META-INF/services/org/apache/camel/thread-factory-listener"));
}
}

0 comments on commit b4d283e

Please sign in to comment.