You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2023/03/17 16:32:10 UTC

[camel-quarkus] branch main updated: Remove redundant Azure IdentityClientBase runtime initialized class config

This is an automated email from the ASF dual-hosted git repository.

aldettinger pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 009a69e779 Remove redundant Azure IdentityClientBase runtime initialized class config
009a69e779 is described below

commit 009a69e779e8271618f3ac071560cfdb38ba16c9
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Mar 17 11:03:20 2023 +0000

    Remove redundant Azure IdentityClientBase runtime initialized class config
    
    Fixes #4356
---
 .../azure/storage/blob/deployment/AzureStorageBlobProcessor.java       | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/extensions/azure-storage-blob/deployment/src/main/java/org/apache/camel/quarkus/component/azure/storage/blob/deployment/AzureStorageBlobProcessor.java b/extensions/azure-storage-blob/deployment/src/main/java/org/apache/camel/quarkus/component/azure/storage/blob/deployment/AzureStorageBlobProcessor.java
index 1c2ef9b512..22167d612f 100644
--- a/extensions/azure-storage-blob/deployment/src/main/java/org/apache/camel/quarkus/component/azure/storage/blob/deployment/AzureStorageBlobProcessor.java
+++ b/extensions/azure-storage-blob/deployment/src/main/java/org/apache/camel/quarkus/component/azure/storage/blob/deployment/AzureStorageBlobProcessor.java
@@ -17,7 +17,6 @@
 package org.apache.camel.quarkus.component.azure.storage.blob.deployment;
 
 import com.azure.identity.implementation.IdentityClient;
-import com.azure.identity.implementation.IdentityClientBase;
 import io.quarkus.deployment.annotations.BuildProducer;
 import io.quarkus.deployment.annotations.BuildStep;
 import io.quarkus.deployment.builditem.CombinedIndexBuildItem;
@@ -81,7 +80,5 @@ class AzureStorageBlobProcessor {
                 new RuntimeInitializedClassBuildItem("com.microsoft.aad.msal4jextensions.persistence.linux.ISecurityLibrary"));
         runtimeInitializedClass.produce(
                 new RuntimeInitializedClassBuildItem("com.microsoft.aad.msal4jextensions.persistence.mac.ISecurityLibrary"));
-        // TODO: Remove this - https://github.com/apache/camel-quarkus/issues/4356
-        runtimeInitializedClass.produce(new RuntimeInitializedClassBuildItem(IdentityClientBase.class.getName()));
     }
 }