Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Deploying to Flex Consumption plan with maven fails #2519

Open
davosian opened this issue Dec 17, 2024 · 4 comments
Open

Deploying to Flex Consumption plan with maven fails #2519

davosian opened this issue Dec 17, 2024 · 4 comments

Comments

@davosian
Copy link

When deploying with mvn clean package azure-functions:deploy, I keep getting this error:

[ERROR] Failed to execute goal com.microsoft.azure:azure-functions-maven-plugin:1.36.0:deploy (default-cli) on project contoso-functions: deploy to Function App with resource creation or updating: AzureToolkitRuntimeException: If you are using a StorageSharedKeyCredential, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate method call.
[ERROR] If you are using a SAS token, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate generateSas method call.
[ERROR] Please remember to disable 'Azure-Storage-Log-String-To-Sign' before going to production as this string can potentially contain PII.
[ERROR] Status code 403, "<?xml version="1.0" encoding="utf-8"?><Error><Code>KeyBasedAuthenticationNotPermitted</Code><Message>Key based authentication is not permitted on this storage account.
[ERROR] RequestId:e58527e9-801e-006f-3fc2-50078a000000
[ERROR] Time:2024-12-17T20:30:13.9011558Z</Message></Error>"
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

Steps to reproduce

I created a flex consumption based project by following these instructions: https://github.com/Azure-Samples/azure-functions-java-flex-consumption-azd

az login
azd init --template azure-functions-java-flex-consumption-azd
azd env set SKIP_VNET true
azd up

This gives me a function with a user managed identity on the flex consumption plan. Deploying with azd does work fine:

azd deploy

Then I updated the pom.xml to deploy with maven instead:

<?xml version="1.0" encoding="UTF-8" ?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.contoso</groupId>
    <artifactId>contoso-functions</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>Azure Java Functions</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>17</java.version>
        <azure.functions.maven.plugin.version>1.36.0</azure.functions.maven.plugin.version>
        <azure.functions.java.library.version>3.1.0</azure.functions.java.library.version>
        <functionAppName>func-api-j6iykckw56zem-functions</functionAppName>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.microsoft.azure.functions</groupId>
            <artifactId>azure-functions-java-library</artifactId>
            <version>${azure.functions.java.library.version}</version>
        </dependency>

        <dependency>
            <groupId>com.azure</groupId>
            <artifactId>azure-storage-queue</artifactId>
            <version>12.24.0</version>
        </dependency>

        <!-- Test -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.11.0-M2</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.azure</groupId>
            <artifactId>azure-identity</artifactId>
            <version>1.14.2</version>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>5.12.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.microsoft.azure</groupId>
                <artifactId>azure-functions-maven-plugin</artifactId>
                <version>${azure.functions.maven.plugin.version}</version>
                <configuration>
                   <auth><type>azure_cli</type></auth>

                    <!-- function app name -->
                    <appName>${functionAppName}</appName>
                    
                    <!-- function app resource group -->
                    <resourceGroup>rg-azfuncqueuetest</resourceGroup>
                    
                    <!-- function app service plan name -->
                    <appServicePlanName>plan-j6iykckw56zem</appServicePlanName>
                    
                    <!-- function app region-->
                    <!-- refers https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-regions for all valid values -->
                    <region>northeurope</region>  
            
                    <!-- function #Tier, default to be consumption if not specified -->
                    <!-- refers https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-#-tiers for all valid values -->
                    <#Tier>Flex Consumption</#Tier>
                    
                    <!-- Whether to disable application insights, default is false -->
                    <!-- refers https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details for all valid configurations for application insights-->
                    <disableAppInsights>false</disableAppInsights>

                    <runtime>
                        <!-- runtime os, could be windows, linux or docker-->
                        <os>linux</os>
                        <javaVersion>17</javaVersion>
                    </runtime>

                    <appSettings>
                        <property>
                            <name>FUNCTIONS_EXTENSION_VERSION</name>
                            <value>~4</value>
                        </property>

                    </appSettings>
                    
                    <deploymentStorageResourceGroup>rg-azfuncqueuetest</deploymentStorageResourceGroup>
                    <storageAuthenticationMethod>UserAssignedIdentity</storageAuthenticationMethod>
                    <userAssignedIdentityResourceId>id-api-j6iykckw56zem</userAssignedIdentityResourceId>

                    <deploymentStorageContainer>deploymentpackage</deploymentStorageContainer>
                    <deploymentStorageAccount>stj6iykckw56zem</deploymentStorageAccount>
                </configuration>
                <executions>
                    <execution>
                        <id>package-functions</id>
                        <goals>
                            <goal>package</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <!--Remove obj folder generated by .NET SDK in maven clean-->
            <plugin>
                <artifactId>maven-clean-plugin</artifactId>
                <version>3.1.0</version>
                <configuration>
                    <filesets>
                        <fileset>
                            <directory>obj</directory>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

Triggering the deployment with maven:

az login
mvn clean package azure-functions:deploy

This results in the above error on the deployment goal (the clean and package steps work fine):

[ERROR] Status code 403, "<?xml version="1.0" encoding="utf-8"?><Error><Code>KeyBasedAuthenticationNotPermitted</Code><Message>Key based authentication is not permitted on this storage account.

I tried many variations in this pom (e.g. using the client id for userAssignedIdentityResourceId) but no matter what, I end up with this error.

According to this error, the maven build is not honoring the user based identity authentication. The authentication itself is most likely ok with proper roles for the user assigned identity, because the deployment with azd deploy does work and - from my understanding - is using the same authentication (azure cli and user assigned identity) so I am not sure what is going on.

@davosian
Copy link
Author

Btw., I used this documentation to configure maven: https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details

@Flanker32
Copy link
Member

Flanker32 commented Feb 5, 2025

@davosian Thanks a lot for your report and sorry for the late response. Maven plugin called kudu api api/publish for flex function deployment, which should not connect the storage account by it self. Could you please help share the error stack with -X to help us better understand the issue? Many thanks!

@davosian
Copy link
Author

davosian commented Feb 5, 2025

@Flanker32 certainly! Here are the steps I performed:

azd init --template azure-functions-java-flex-consumption-azd
(creating local.settings.json)
azd auth login
azd env set SKIP_VNET true
azd up

cd http
(upating pom.xml)
az login
mvn clean package azure-functions:deploy -X

Since this is a very generic setup, feel free to reproduce these steps for yourself. I am curious to know whether this works in your environment.

This is the local.settings.json:

{
  "IsEncrypted": false,
  "Values": {
      "AzureWebJobsStorage": "UseDevelopmentStorage=true",
      "FUNCTIONS_WORKER_RUNTIME": "java"
  }
}

This is the updated pom.xml I am using:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.contoso</groupId>
    <artifactId>contoso-functions</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>Azure Java Functions</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>17</java.version>
        <azure.functions.maven.plugin.version>1.37.0</azure.functions.maven.plugin.version>
        <azure.functions.java.library.version>3.1.0</azure.functions.java.library.version>
        <functionAppName>func-api-4frwx3l2fnxrg-functions</functionAppName>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.microsoft.azure.functions</groupId>
            <artifactId>azure-functions-java-library</artifactId>
            <version>${azure.functions.java.library.version}</version>
        </dependency>
        <!-- Test -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.11.0-M2</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.azure</groupId>
            <artifactId>azure-identity</artifactId>
            <version>1.15.0</version>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>5.12.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.13.0</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.microsoft.azure</groupId>
                <artifactId>azure-functions-maven-plugin</artifactId>
                <version>${azure.functions.maven.plugin.version}</version>
                <configuration>
                    <!-- function app name -->
                    <appName>${functionAppName}</appName>
                    <!-- function app resource group -->
                    <resourceGroup>rg-flexconsumption</resourceGroup>
                    <!-- function app service plan name -->
                    <!-- <appServicePlanName>java-functions-app-service-plan</appServicePlanName> -->
                    <#Tier>Flex Consumption</#Tier>
                    <!-- function app region-->
                    <!-- refers
                    https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-regions
                    for all valid values -->
                    <region>swedencentral</region>
                    <!--
                    <storageAuthenticationMethod>UserAssignedIdentity</storageAuthenticationMethod> -->
                    <!--
                    <userAssignedIdentityResourceId>0a80886b-d24a-4380-aa02-7cbe0c870fc8</userAssignedIdentityResourceId> -->
                    <!-- function #Tier, default to be consumption if not specified -->
                    <!-- refers
                    https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-#-tiers
                    for all valid values -->
                    <!-- <#Tier></#Tier> -->
                    <!-- Whether to disable application insights, default is false -->
                    <!-- refers
                    https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details
                    for all valid configurations for application insights-->
                    <!-- <disableAppInsights></disableAppInsights> -->
                    <runtime>
                        <!-- runtime os, could be windows, linux or docker-->
                        <os>linux</os>
                        <javaVersion>17</javaVersion>
                    </runtime>
                    <appSettings>
                        <property>
                            <name>FUNCTIONS_EXTENSION_VERSION</name>
                            <value>~4</value>
                        </property>
                    </appSettings>

                    <!-- using the one created by azd up -->
                    <appServicePlanName>plan-4frwx3l2fnxrg</appServicePlanName>

                    <!-- using the one created by azd up -->
                    <appInsightsKey>9d92bb5f-a956-42a0-b893-f0c230633535</appInsightsKey>

                    <!-- using the one created by azd up -->
                    <appInsightsInstance>appi-4frwx3l2fnxrg</appInsightsInstance>

                    <!-- using the one created by azd up -->
                    <deploymentStorageAccount>st4frwx3l2fnxrg</deploymentStorageAccount>
                    <deploymentStorageResourceGroup>rg-flexconsumption</deploymentStorageResourceGroup>
                    <deploymentStorageContainer>deploymentpackage</deploymentStorageContainer>
                    <storageAuthenticationMethod>UserAssignedIdentity</storageAuthenticationMethod>

                    <!-- using the one created by azd up -->
                    <userAssignedIdentityResourceId>id-api-4frwx3l2fnxrg</userAssignedIdentityResourceId>

                </configuration>
                <executions>
                    <execution>
                        <id>package-functions</id>
                        <goals>
                            <goal>package</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <!--Remove
            obj folder generated by .NET SDK in maven clean-->
            <plugin>
                <artifactId>maven-clean-plugin</artifactId>
                <version>3.1.0</version>
                <configuration>
                    <filesets>
                        <fileset>
                            <directory>obj</directory>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

This is what I have changed compared to the automatically generated pom.xml:

diff --git a/http/pom.xml b/http/pom.xml
index 131ad74..4012638 100644
--- a/http/pom.xml
+++ b/http/pom.xml
@@ -1,5 +1,7 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>com.contoso</groupId>
@@ -12,9 +14,9 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <java.version>17</java.version>
-        <azure.functions.maven.plugin.version>1.36.0</azure.functions.maven.plugin.version>
+        <azure.functions.maven.plugin.version>1.37.0</azure.functions.maven.plugin.version>
         <azure.functions.java.library.version>3.1.0</azure.functions.java.library.version>
-        <functionAppName>contoso-functions</functionAppName>
+        <functionAppName>func-api-4frwx3l2fnxrg-functions</functionAppName>
     </properties>
 
     <dependencies>
@@ -34,7 +36,7 @@
         <dependency>
             <groupId>com.azure</groupId>
             <artifactId>azure-identity</artifactId>
-            <version>1.12.2</version>
+            <version>1.15.0</version>
         </dependency>
 
         <dependency>
@@ -50,7 +52,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
-                <version>3.8.1</version>
+                <version>3.13.0</version>
                 <configuration>
                     <source>${java.version}</source>
                     <target>${java.version}</target>
@@ -65,20 +67,28 @@
                     <!-- function app name -->
                     <appName>${functionAppName}</appName>
                     <!-- function app resource group -->
-                    <resourceGroup>Enter resource group name</resourceGroup>
+                    <resourceGroup>rg-flexconsumption</resourceGroup>
                     <!-- function app service plan name -->
                     <!-- <appServicePlanName>java-functions-app-service-plan</appServicePlanName> -->
-                     <#Tier>Flex Consumption</#Tier>
+                    <#Tier>Flex Consumption</#Tier>
                     <!-- function app region-->
-                    <!-- refers https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-regions for all valid values -->
-                    <region>eastus</region>  
-                    <!-- <storageAuthenticationMethod>UserAssignedIdentity</storageAuthenticationMethod> -->
-                  <!--  <userAssignedIdentityResourceId>0a80886b-d24a-4380-aa02-7cbe0c870fc8</userAssignedIdentityResourceId> -->
+                    <!-- refers
+                    https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-regions
+                    for all valid values -->
+                    <region>swedencentral</region>
+                    <!--
+                    <storageAuthenticationMethod>UserAssignedIdentity</storageAuthenticationMethod> -->
+                    <!--
+                    <userAssignedIdentityResourceId>0a80886b-d24a-4380-aa02-7cbe0c870fc8</userAssignedIdentityResourceId> -->
                     <!-- function #Tier, default to be consumption if not specified -->
-                    <!-- refers https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-#-tiers for all valid values -->
+                    <!-- refers
+                    https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details#supported-#-tiers
+                    for all valid values -->
                     <!-- <#Tier></#Tier> -->
                     <!-- Whether to disable application insights, default is false -->
-                    <!-- refers https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details for all valid configurations for application insights-->
+                    <!-- refers
+                    https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Functions:-Configuration-Details
+                    for all valid configurations for application insights-->
                     <!-- <disableAppInsights></disableAppInsights> -->
                     <runtime>
                         <!-- runtime os, could be windows, linux or docker-->
@@ -91,6 +101,25 @@
                             <value>~4</value>
                         </property>
                     </appSettings>
+
+                    <!-- using the one created by azd up -->
+                    <appServicePlanName>plan-4frwx3l2fnxrg</appServicePlanName>
+
+                    <!-- using the one created by azd up -->
+                    <appInsightsKey>9d92bb5f-a956-42a0-b893-f0c230633535</appInsightsKey>
+
+                    <!-- using the one created by azd up -->
+                    <appInsightsInstance>appi-4frwx3l2fnxrg</appInsightsInstance>
+
+                    <!-- using the one created by azd up -->
+                    <deploymentStorageAccount>st4frwx3l2fnxrg</deploymentStorageAccount>
+                    <deploymentStorageResourceGroup>rg-flexconsumption</deploymentStorageResourceGroup>
+                    <deploymentStorageContainer>deploymentpackage</deploymentStorageContainer>
+                    <storageAuthenticationMethod>UserAssignedIdentity</storageAuthenticationMethod>
+
+                    <!-- using the one created by azd up -->
+                    <userAssignedIdentityResourceId>id-api-4frwx3l2fnxrg</userAssignedIdentityResourceId>
+
                 </configuration>
                 <executions>
                     <execution>
@@ -101,7 +130,8 @@
                     </execution>
                 </executions>
             </plugin>
-            <!--Remove obj folder generated by .NET SDK in maven clean-->
+            <!--Remove
+            obj folder generated by .NET SDK in maven clean-->
             <plugin>
                 <artifactId>maven-clean-plugin</artifactId>
                 <version>3.1.0</version>
@@ -115,4 +145,4 @@
             </plugin>
         </plugins>
     </build>
-</project>
+</project>
\ No newline at end of file

Here is again the error message I am getting:

[ERROR] Failed to execute goal com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy (default-cli) on project contoso-functions: deploy to Function App with resource creation or updating: AzureToolkitRuntimeException: If you are using a StorageSharedKeyCredential, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate method call.
[ERROR] If you are using a SAS token, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate generateSas method call.
[ERROR] Please remember to disable 'Azure-Storage-Log-String-To-Sign' before going to production as this string can potentially contain PII.
[ERROR] Status code 403, "<?xml version="1.0" encoding="utf-8"?><Error><Code>KeyBasedAuthenticationNotPermitted</Code><Message>Key based authentication is not permitted on this storage account.
[ERROR] RequestId:c534930e-b01e-005d-27b7-7706e5000000
[ERROR] Time:2025-02-05T10:21:19.9756747Z</Message></Error>"

I do not understand why it is trying to use key based authentication for the storage account since I am telling it to use UserAssignedIdentity.

@davosian
Copy link
Author

davosian commented Feb 5, 2025

Here is the debug log:

Apache Maven 3.9.8 (36645f6c9b5079805ea5009217e36f2cffd34256)
Maven home: ** redacted **
Java version: 17.0.13, vendor: Azul Systems, Inc., runtime: ** redacted **
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "15.3", arch: "aarch64", family: "mac"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG]   Imported: javax.annotation.* < plexus.core
[DEBUG]   Imported: javax.annotation.security.* < plexus.core
[DEBUG]   Imported: javax.inject.* < plexus.core
[DEBUG]   Imported: org.apache.maven.* < plexus.core
[DEBUG]   Imported: org.apache.maven.artifact < plexus.core
[DEBUG]   Imported: org.apache.maven.classrealm < plexus.core
[DEBUG]   Imported: org.apache.maven.cli < plexus.core
[DEBUG]   Imported: org.apache.maven.configuration < plexus.core
[DEBUG]   Imported: org.apache.maven.exception < plexus.core
[DEBUG]   Imported: org.apache.maven.execution < plexus.core
[DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core
[DEBUG]   Imported: org.apache.maven.graph < plexus.core
[DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG]   Imported: org.apache.maven.model < plexus.core
[DEBUG]   Imported: org.apache.maven.monitor < plexus.core
[DEBUG]   Imported: org.apache.maven.plugin < plexus.core
[DEBUG]   Imported: org.apache.maven.profiles < plexus.core
[DEBUG]   Imported: org.apache.maven.project < plexus.core
[DEBUG]   Imported: org.apache.maven.reporting < plexus.core
[DEBUG]   Imported: org.apache.maven.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG]   Imported: org.apache.maven.settings < plexus.core
[DEBUG]   Imported: org.apache.maven.toolchain < plexus.core
[DEBUG]   Imported: org.apache.maven.usability < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG]   Imported: org.codehaus.classworlds < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.* < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.component < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.container < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.context < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[DEBUG]   Imported: org.eclipse.aether.* < plexus.core
[DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core
[DEBUG]   Imported: org.eclipse.aether.collection < plexus.core
[DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core
[DEBUG]   Imported: org.eclipse.aether.graph < plexus.core
[DEBUG]   Imported: org.eclipse.aether.impl < plexus.core
[DEBUG]   Imported: org.eclipse.aether.installation < plexus.core
[DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core
[DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core
[DEBUG]   Imported: org.eclipse.aether.repository < plexus.core
[DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core
[DEBUG]   Imported: org.eclipse.aether.spi < plexus.core
[DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core
[DEBUG]   Imported: org.eclipse.aether.util < plexus.core
[DEBUG]   Imported: org.eclipse.aether.version < plexus.core
[DEBUG]   Imported: org.fusesource.jansi.* < plexus.core
[DEBUG]   Imported: org.slf4j.* < plexus.core
[DEBUG]   Imported: org.slf4j.event.* < plexus.core
[DEBUG]   Imported: org.slf4j.helpers.* < plexus.core
[DEBUG]   Imported: org.slf4j.spi.* < plexus.core
[DEBUG] Populating class realm maven.api
[DEBUG] Created adapter factory; available factories [file-lock, rwlock-local, semaphore-local, noop]; available name mappers [discriminating, file-gav, file-hgav, file-static, gav, static]
[INFO] Error stacktraces are turned on.
[DEBUG] Message scheme: color
[DEBUG] Message styles: debug info warning error success failure strong mojo project
[DEBUG] Reading global settings from /Users/** redacted **/.sdkman/candidates/maven/current/conf/settings.xml
[DEBUG] Reading user settings from /Users/** redacted **/.m2/settings.xml
[DEBUG] Reading global toolchains from /Users/** redacted **/.sdkman/candidates/maven/current/conf/toolchains.xml
[DEBUG] Reading user toolchains from /Users/** redacted **/.m2/toolchains.xml
[DEBUG] Using local repository at /Users/** redacted **/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/** redacted **/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project com.contoso:contoso-functions:jar:1.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Resolving plugin prefix azure-functions from [org.apache.maven.plugins, org.codehaus.mojo]
[DEBUG] Creating adapter using nameMapper 'gav' and factory 'rwlock-local'
[DEBUG] Resolved plugin prefix azure-functions to com.microsoft.azure:azure-functions-maven-plugin from POM com.contoso:contoso-functions:jar:1.0-SNAPSHOT
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: com.contoso:contoso-functions:jar:1.0-SNAPSHOT
[DEBUG] Tasks:   [clean, package, azure-functions:deploy]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO] 
[INFO] -------------------< com.contoso:contoso-functions >--------------------
[INFO] Building Azure Java Functions 1.0-SNAPSHOT
[INFO]   from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Resolving plugin prefix azure-functions from [org.apache.maven.plugins, org.codehaus.mojo]
[DEBUG] Resolved plugin prefix azure-functions to com.microsoft.azure:azure-functions-maven-plugin from POM com.contoso:contoso-functions:jar:1.0-SNAPSHOT
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       com.contoso:contoso-functions:1.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile, runtime, test]
[DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:3.1.0:clean (default-clean)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <directory default-value="${project.build.directory}"/>
  <excludeDefaultDirectories default-value="false">${maven.clean.excludeDefaultDirectories}</excludeDefaultDirectories>
  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
  <filesets>
    <fileset>
      <directory>obj</directory>
    </fileset>
  </filesets>
  <followSymLinks default-value="false">${maven.clean.followSymLinks}</followSymLinks>
  <outputDirectory default-value="${project.build.outputDirectory}"/>
  <reportDirectory default-value="${project.build.outputDirectory}"/>
  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
  <skip default-value="false">${maven.clean.skip}</skip>
  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
  <verbose>${maven.clean.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.3.1:resources (default-resources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <addDefaultExcludes default-value="true"/>
  <buildFilters default-value="${project.build.filters}"/>
  <encoding default-value="${project.build.sourceEncoding}"/>
  <escapeWindowsPaths default-value="true"/>
  <fileNameFiltering default-value="false"/>
  <includeEmptyDirs default-value="false"/>
  <outputDirectory default-value="${project.build.outputDirectory}"/>
  <overwrite default-value="false"/>
  <project default-value="${project}"/>
  <resources default-value="${project.resources}"/>
  <session default-value="${session}"/>
  <skip default-value="false">${maven.resources.skip}</skip>
  <supportMultiLineFiltering default-value="false"/>
  <useBuildFilters default-value="true"/>
  <useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.13.0:compile (default-compile)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <annotationProcessorPathsUseDepMgmt default-value="false"/>
  <basedir default-value="${basedir}"/>
  <buildDirectory default-value="${project.build.directory}"/>
  <compilePath default-value="${project.compileClasspathElements}"/>
  <compileSourceRoots default-value="${project.compileSourceRoots}"/>
  <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
  <compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>
  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
  <createMissingPackageInfoClass default-value="true">${maven.compiler.createMissingPackageInfoClass}</createMissingPackageInfoClass>
  <debug default-value="true">${maven.compiler.debug}</debug>
  <debugFileName default-value="javac"/>
  <debuglevel>${maven.compiler.debuglevel}</debuglevel>
  <enablePreview default-value="false">${maven.compiler.enablePreview}</enablePreview>
  <encoding default-value="${project.build.sourceEncoding}">UTF-8</encoding>
  <executable>${maven.compiler.executable}</executable>
  <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
  <fileExtensions default-value="class,jar"/>
  <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
  <forceLegacyJavacApi default-value="false">${maven.compiler.forceLegacyJavacApi}</forceLegacyJavacApi>
  <fork default-value="false">${maven.compiler.fork}</fork>
  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
  <implicit>${maven.compiler.implicit}</implicit>
  <maxmem>${maven.compiler.maxmem}</maxmem>
  <meminitial>${maven.compiler.meminitial}</meminitial>
  <mojoExecution default-value="${mojoExecution}"/>
  <optimize default-value="false">${maven.compiler.optimize}</optimize>
  <outputDirectory default-value="${project.build.outputDirectory}">${maven.compiler.outputDirectory}</outputDirectory>
  <outputTimestamp default-value="${project.build.outputTimestamp}"/>
  <parameters default-value="false">${maven.compiler.parameters}</parameters>
  <proc>${maven.compiler.proc}</proc>
  <project default-value="${project}"/>
  <projectArtifact default-value="${project.artifact}"/>
  <release>${maven.compiler.release}</release>
  <session default-value="${session}"/>
  <showCompilationChanges default-value="false">${maven.compiler.showCompilationChanges}</showCompilationChanges>
  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
  <showWarnings default-value="true">${maven.compiler.showWarnings}</showWarnings>
  <skipMain>${maven.main.skip}</skipMain>
  <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
  <source default-value="1.8">17</source>
  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
  <target default-value="1.8">17</target>
  <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
  <verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.3.1:testResources (default-testResources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <addDefaultExcludes default-value="true"/>
  <buildFilters default-value="${project.build.filters}"/>
  <encoding default-value="${project.build.sourceEncoding}"/>
  <escapeWindowsPaths default-value="true"/>
  <fileNameFiltering default-value="false"/>
  <includeEmptyDirs default-value="false"/>
  <outputDirectory default-value="${project.build.testOutputDirectory}"/>
  <overwrite default-value="false"/>
  <project default-value="${project}"/>
  <resources default-value="${project.testResources}"/>
  <session default-value="${session}"/>
  <skip default-value="false">${maven.test.skip}</skip>
  <supportMultiLineFiltering default-value="false"/>
  <useBuildFilters default-value="true"/>
  <useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.13.0:testCompile (default-testCompile)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <annotationProcessorPathsUseDepMgmt default-value="false"/>
  <basedir default-value="${basedir}"/>
  <buildDirectory default-value="${project.build.directory}"/>
  <compileSourceRoots default-value="${project.testCompileSourceRoots}"/>
  <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
  <compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>
  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
  <createMissingPackageInfoClass default-value="true">${maven.compiler.createMissingPackageInfoClass}</createMissingPackageInfoClass>
  <debug default-value="true">${maven.compiler.debug}</debug>
  <debugFileName default-value="javac-test"/>
  <debuglevel>${maven.compiler.debuglevel}</debuglevel>
  <enablePreview default-value="false">${maven.compiler.enablePreview}</enablePreview>
  <encoding default-value="${project.build.sourceEncoding}">UTF-8</encoding>
  <executable>${maven.compiler.executable}</executable>
  <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
  <fileExtensions default-value="class,jar"/>
  <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
  <forceLegacyJavacApi default-value="false">${maven.compiler.forceLegacyJavacApi}</forceLegacyJavacApi>
  <fork default-value="false">${maven.compiler.fork}</fork>
  <generatedTestSourcesDirectory default-value="${project.build.directory}/generated-test-sources/test-annotations"/>
  <implicit>${maven.compiler.implicit}</implicit>
  <maxmem>${maven.compiler.maxmem}</maxmem>
  <meminitial>${maven.compiler.meminitial}</meminitial>
  <mojoExecution default-value="${mojoExecution}"/>
  <optimize default-value="false">${maven.compiler.optimize}</optimize>
  <outputDirectory default-value="${project.build.testOutputDirectory}"/>
  <outputTimestamp default-value="${project.build.outputTimestamp}"/>
  <parameters default-value="false">${maven.compiler.parameters}</parameters>
  <proc>${maven.compiler.proc}</proc>
  <project default-value="${project}"/>
  <release>${maven.compiler.release}</release>
  <session default-value="${session}"/>
  <showCompilationChanges default-value="false">${maven.compiler.showCompilationChanges}</showCompilationChanges>
  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
  <showWarnings default-value="true">${maven.compiler.showWarnings}</showWarnings>
  <skip>${maven.test.skip}</skip>
  <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
  <source default-value="1.8">17</source>
  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
  <target default-value="1.8">17</target>
  <testPath default-value="${project.testClasspathElements}"/>
  <testRelease>${maven.compiler.testRelease}</testRelease>
  <testSource>${maven.compiler.testSource}</testSource>
  <testTarget>${maven.compiler.testTarget}</testTarget>
  <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
  <useModulePath default-value="true"/>
  <verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-surefire-plugin:3.2.5:test (default-test)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <additionalClasspathDependencies>${maven.test.additionalClasspathDependencies}</additionalClasspathDependencies>
  <additionalClasspathElements>${maven.test.additionalClasspath}</additionalClasspathElements>
  <argLine>${argLine}</argLine>
  <basedir default-value="${basedir}"/>
  <childDelegation default-value="false">${childDelegation}</childDelegation>
  <classesDirectory default-value="${project.build.outputDirectory}"/>
  <classpathDependencyExcludes>${maven.test.dependency.excludes}</classpathDependencyExcludes>
  <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>
  <dependenciesToScan>${dependenciesToScan}</dependenciesToScan>
  <disableXmlReport default-value="false">${disableXmlReport}</disableXmlReport>
  <enableAssertions default-value="true">${enableAssertions}</enableAssertions>
  <enableProcessChecker>${surefire.enableProcessChecker}</enableProcessChecker>
  <encoding default-value="${project.reporting.outputEncoding}">${surefire.encoding}</encoding>
  <excludeJUnit5Engines>${surefire.excludeJUnit5Engines}</excludeJUnit5Engines>
  <excludedEnvironmentVariables>${surefire.excludedEnvironmentVariables}</excludedEnvironmentVariables>
  <excludedGroups>${excludedGroups}</excludedGroups>
  <excludes>${surefire.excludes}</excludes>
  <excludesFile>${surefire.excludesFile}</excludesFile>
  <failIfNoSpecifiedTests default-value="true">${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
  <failIfNoTests default-value="false">${failIfNoTests}</failIfNoTests>
  <failOnFlakeCount default-value="0">${surefire.failOnFlakeCount}</failOnFlakeCount>
  <forkCount default-value="1">${forkCount}</forkCount>
  <forkNode>${surefire.forkNode}</forkNode>
  <forkedProcessExitTimeoutInSeconds default-value="30">${surefire.exitTimeout}</forkedProcessExitTimeoutInSeconds>
  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
  <groups>${groups}</groups>
  <includeJUnit5Engines>${surefire.includeJUnit5Engines}</includeJUnit5Engines>
  <includes>${surefire.includes}</includes>
  <includesFile>${surefire.includesFile}</includesFile>
  <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>
  <jvm>${jvm}</jvm>
  <objectFactory>${objectFactory}</objectFactory>
  <parallel>${parallel}</parallel>
  <parallelMavenExecution default-value="${session.parallel}"/>
  <parallelOptimized default-value="true">${parallelOptimized}</parallelOptimized>
  <parallelTestsTimeoutForcedInSeconds>${surefire.parallel.forcedTimeout}</parallelTestsTimeoutForcedInSeconds>
  <parallelTestsTimeoutInSeconds>${surefire.parallel.timeout}</parallelTestsTimeoutInSeconds>
  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
  <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
  <pluginDescriptor default-value="${plugin}"/>
  <printSummary default-value="true">${surefire.printSummary}</printSummary>
  <project default-value="${project}"/>
  <projectArtifactMap>${project.artifactMap}</projectArtifactMap>
  <projectBuildDirectory default-value="${project.build.directory}"/>
  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
  <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>
  <reportNameSuffix default-value="">${surefire.reportNameSuffix}</reportNameSuffix>
  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
  <reuseForks default-value="true">${reuseForks}</reuseForks>
  <runOrder default-value="filesystem">${surefire.runOrder}</runOrder>
  <runOrderRandomSeed>${surefire.runOrder.random.seed}</runOrderRandomSeed>
  <session default-value="${session}"/>
  <shutdown default-value="exit">${surefire.shutdown}</shutdown>
  <skip default-value="false">${maven.test.skip}</skip>
  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
  <skipExec>${maven.test.skip.exec}</skipExec>
  <skipTests default-value="false">${skipTests}</skipTests>
  <suiteXmlFiles>${surefire.suiteXmlFiles}</suiteXmlFiles>
  <systemPropertiesFile>${surefire.systemPropertiesFile}</systemPropertiesFile>
  <tempDir default-value="surefire">${tempDir}</tempDir>
  <test>${test}</test>
  <testClassesDirectory default-value="${project.build.testOutputDirectory}"/>
  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
  <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>
  <testSourceDirectory default-value="${project.build.testSourceDirectory}"/>
  <threadCount>${threadCount}</threadCount>
  <threadCountClasses default-value="0">${threadCountClasses}</threadCountClasses>
  <threadCountMethods default-value="0">${threadCountMethods}</threadCountMethods>
  <threadCountSuites default-value="0">${threadCountSuites}</threadCountSuites>
  <trimStackTrace default-value="false">${trimStackTrace}</trimStackTrace>
  <useFile default-value="true">${surefire.useFile}</useFile>
  <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>
  <useModulePath default-value="true">${surefire.useModulePath}</useModulePath>
  <useSystemClassLoader default-value="true">${surefire.useSystemClassLoader}</useSystemClassLoader>
  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
  <workingDirectory>${basedir}</workingDirectory>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-jar-plugin:3.4.1:jar (default-jar)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <addDefaultExcludes default-value="true"/>
  <classesDirectory default-value="${project.build.outputDirectory}"/>
  <detectMultiReleaseJar default-value="true">${maven.jar.detectMultiReleaseJar}</detectMultiReleaseJar>
  <finalName default-value="${project.build.finalName}"/>
  <forceCreation default-value="false">${maven.jar.forceCreation}</forceCreation>
  <outputDirectory default-value="${project.build.directory}"/>
  <outputTimestamp default-value="${project.build.outputTimestamp}"/>
  <project default-value="${project}"/>
  <session default-value="${session}"/>
  <skipIfEmpty default-value="false"/>
  <useDefaultManifestFile default-value="false">${jar.useDefaultManifestFile}</useDefaultManifestFile>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          com.microsoft.azure:azure-functions-maven-plugin:1.37.0:package (package-functions)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <allowTelemetry default-value="true">${allowTelemetry}</allowTelemetry>
  <appInsightsInstance>appi-4frwx3l2fnxrg</appInsightsInstance>
  <appInsightsKey>9d92bb5f-a956-42a0-b893-f0c230633535</appInsightsKey>
  <appName>func-api-4frwx3l2fnxrg-functions</appName>
  <appServicePlanName>plan-4frwx3l2fnxrg</appServicePlanName>
  <appServicePlanResourceGroup>${appServicePlanResourceGroup}</appServicePlanResourceGroup>
  <appSettings>
    <property>
      <name>FUNCTIONS_EXTENSION_VERSION</name>
      <value>~4</value>
    </property>
  </appSettings>
  <artifactPath>${functions.artifact}</artifactPath>
  <auth>${auth}</auth>
  <authType>${authType}</authType>
  <buildDirectory default-value="${project.build.directory}"/>
  <buildJarWithDependencies default-value="false">${functions.buildJarWithDependencies}</buildJarWithDependencies>
  <disableAppInsights default-value="false">${functions.disableAppInsights}</disableAppInsights>
  <enableDistributedTracing>${functions.enableDistributedTracing}</enableDistributedTracing>
  <failsOnError default-value="true">${failsOnError}</failsOnError>
  <failsOnRuntimeValidationError default-value="true">${failsOnRuntimeValidationError}</failsOnRuntimeValidationError>
  <finalName default-value="${project.build.finalName}"/>
  <hostJson default-value="host.json">${functions.hostJson}</hostJson>
  <localSettingsJson default-value="local.settings.json">${functions.localSettingsJson}</localSettingsJson>
  <outputDirectory default-value="${project.build.outputDirectory}"/>
  <plugin default-value="${plugin}"/>
  <#Tier>Flex Consumption</#Tier>
  <project default-value="${project}"/>
  <region>swedencentral</region>
  <resourceGroup>rg-flexconsumption</resourceGroup>
  <runtime>
    <os>linux</os>
    <javaVersion>17</javaVersion>${functions.runtime}</runtime>
  <session default-value="${session}"/>
  <settings default-value="${settings}"/>
  <skip default-value="false">${functions.skip}</skip>
  <skipCopyDependencies default-value="false">${functions.skipCopyDependencies}</skipCopyDependencies>
  <skipInstallExtensions default-value="false">${functions.skipInstallExtensions}</skipInstallExtensions>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy (default-cli)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <allowTelemetry default-value="true">${allowTelemetry}</allowTelemetry>
  <alwaysReadyInstances>${alwaysReadyInstances}</alwaysReadyInstances>
  <appInsightsInstance>appi-4frwx3l2fnxrg</appInsightsInstance>
  <appInsightsKey>9d92bb5f-a956-42a0-b893-f0c230633535</appInsightsKey>
  <appName>func-api-4frwx3l2fnxrg-functions</appName>
  <appServicePlanName>plan-4frwx3l2fnxrg</appServicePlanName>
  <appServicePlanResourceGroup>${appServicePlanResourceGroup}</appServicePlanResourceGroup>
  <appSettings>
    <property>
      <name>FUNCTIONS_EXTENSION_VERSION</name>
      <value>~4</value>
    </property>
  </appSettings>
  <artifactPath>${functions.artifact}</artifactPath>
  <auth>${auth}</auth>
  <authType>${authType}</authType>
  <buildDirectory default-value="${project.build.directory}"/>
  <cpu>${cpu}</cpu>
  <deploymentStorageAccount>st4frwx3l2fnxrg</deploymentStorageAccount>
  <deploymentStorageContainer>deploymentpackage</deploymentStorageContainer>
  <deploymentStorageResourceGroup>rg-flexconsumption</deploymentStorageResourceGroup>
  <deploymentType>${deploymentType}</deploymentType>
  <disableAppInsights default-value="false">${functions.disableAppInsights}</disableAppInsights>
  <enableDistributedTracing>${functions.enableDistributedTracing}</enableDistributedTracing>
  <failsOnError default-value="true">${failsOnError}</failsOnError>
  <failsOnRuntimeValidationError default-value="true">${failsOnRuntimeValidationError}</failsOnRuntimeValidationError>
  <finalName default-value="${project.build.finalName}"/>
  <hostJson default-value="host.json">${functions.hostJson}</hostJson>
  <httpInstanceConcurrency>${httpInstanceConcurrency}</httpInstanceConcurrency>
  <localSettingsJson default-value="local.settings.json">${functions.localSettingsJson}</localSettingsJson>
  <memory>${memory}</memory>
  <outputDirectory default-value="${project.build.outputDirectory}"/>
  <plugin default-value="${plugin}"/>
  <#Tier>Flex Consumption</#Tier>
  <project default-value="${project}"/>
  <region>swedencentral</region>
  <resourceGroup>rg-flexconsumption</resourceGroup>
  <runtime>
    <os>linux</os>
    <javaVersion>17</javaVersion>${functions.runtime}</runtime>
  <session default-value="${session}"/>
  <settings default-value="${settings}"/>
  <skip default-value="false">${functions.skip}</skip>
  <skipEndOfLifeValidation default-value="false">${functions.skipEndOfLifeValidation}</skipEndOfLifeValidation>
  <storageAccountConnectionString>${storageAccountConnectionString}</storageAccountConnectionString>
  <storageAuthenticationMethod>UserAssignedIdentity</storageAuthenticationMethod>
  <userAssignedIdentityResourceId>id-api-4frwx3l2fnxrg</userAssignedIdentityResourceId>
  <workloadProfileName>${workloadProfileName}</workloadProfileName>
</configuration>

** output truncated **

[INFO] 
[INFO] --- azure-functions:1.37.0:package (package-functions) @ contoso-functions ---
[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for repository.jboss.org (http://repository.jboss.org/maven2).
[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for snapshots.jboss.org (http://snapshots.jboss.org/maven2).
[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for oss.sonatype.org/jboss-snapshots (http://oss.sonatype.org/content/repositories/jboss-snapshots).
[DEBUG] Dependency collection stats {ConflictMarker.analyzeTime=356833, ConflictMarker.markTime=220875, ConflictMarker.nodeCount=1113, ConflictIdSorter.graphTime=301667, ConflictIdSorter.topsortTime=347167, ConflictIdSorter.conflictIdCount=201, ConflictIdSorter.conflictIdCycleCount=15, ConflictResolver.totalTime=6829917, ConflictResolver.conflictItemCount=557, DfDependencyCollector.collectTime=176928125, DfDependencyCollector.transformTime=8096083}
[DEBUG] com.microsoft.azure:azure-functions-maven-plugin:jar:1.37.0
[DEBUG]    org.apache.maven.plugins:maven-shade-plugin:jar:3.4.1:compile
[DEBUG]       org.apache.maven.shared:maven-artifact-transfer:jar:0.13.1:compile
[DEBUG]          org.apache.maven.shared:maven-common-artifact-filters:jar:3.1.0:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.7.36:compile (version managed from default)
[DEBUG]       org.ow2.asm:asm:jar:9.3:compile (version managed from default)
[DEBUG]       org.ow2.asm:asm-commons:jar:9.6:compile (version managed from default)
[DEBUG]          org.ow2.asm:asm-tree:jar:9.6:compile
[DEBUG]       org.jdom:jdom2:jar:2.0.6.1:compile
[DEBUG]       org.apache.maven.shared:maven-dependency-tree:jar:3.2.0:compile
[DEBUG]          org.eclipse.aether:aether-util:jar:1.0.0.v20140518:compile
[DEBUG]             org.eclipse.aether:aether-api:jar:1.0.0.v20140518:compile
[DEBUG]       commons-io:commons-io:jar:2.16.0:compile (version managed from default)
[DEBUG]       org.vafer:jdependency:jar:2.8.0:compile
[DEBUG]       org.apache.commons:commons-collections4:jar:4.4:compile (version managed from default)
[DEBUG]    io.projectreactor.netty:reactor-netty:jar:1.1.13:compile
[DEBUG]       io.projectreactor.netty:reactor-netty-core:jar:1.1.13:compile (version managed from default)
[DEBUG]          io.netty:netty-resolver-dns:jar:4.1.101.Final:compile
[DEBUG]             io.netty:netty-codec-dns:jar:4.1.101.Final:compile
[DEBUG]          io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.101.Final:compile
[DEBUG]             io.netty:netty-resolver-dns-classes-macos:jar:4.1.101.Final:compile
[DEBUG]          io.projectreactor:reactor-core:jar:3.6.4:compile (version managed from default)
[DEBUG]             org.reactivestreams:reactive-streams:jar:1.0.4:compile
[DEBUG]       io.projectreactor.netty:reactor-netty-http:jar:1.1.13:compile (version managed from default)
[DEBUG]       io.projectreactor.netty.incubator:reactor-netty-incubator-quic:jar:0.1.13:runtime
[DEBUG]          io.netty.incubator:netty-incubator-codec-native-quic:jar:linux-x86_64:0.0.52.Final:runtime
[DEBUG]             io.netty.incubator:netty-incubator-codec-classes-quic:jar:0.0.52.Final:runtime
[DEBUG]    com.azure:azure-core-http-netty:jar:1.14.1:compile
[DEBUG]       com.azure:azure-core:jar:1.54.1:compile (version managed from default) (exclusions managed from default)
[DEBUG]          com.azure:azure-json:jar:1.3.0:compile
[DEBUG]          com.azure:azure-xml:jar:1.1.0:compile
[DEBUG]          com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0:compile (version managed from default)
[DEBUG]          com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0:compile (version managed from default)
[DEBUG]       io.netty:netty-handler:jar:4.1.101.Final:compile
[DEBUG]          io.netty:netty-resolver:jar:4.1.101.Final:compile
[DEBUG]          io.netty:netty-transport:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-handler-proxy:jar:4.1.101.Final:compile
[DEBUG]          io.netty:netty-codec-socks:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-buffer:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-codec:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-codec-http:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-codec-http2:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-transport-native-unix-common:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.101.Final:compile
[DEBUG]          io.netty:netty-transport-classes-epoll:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.101.Final:compile
[DEBUG]          io.netty:netty-transport-classes-kqueue:jar:4.1.101.Final:compile
[DEBUG]       io.netty:netty-tcnative-boringssl-static:jar:2.0.62.Final:compile
[DEBUG]          io.netty:netty-tcnative-classes:jar:2.0.62.Final:compile
[DEBUG]          io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.62.Final:compile
[DEBUG]          io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.62.Final:compile
[DEBUG]          io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.62.Final:compile
[DEBUG]          io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.62.Final:compile
[DEBUG]          io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.62.Final:compile
[DEBUG]       io.netty:netty-common:jar:4.1.101.Final:compile
[DEBUG]    com.microsoft.azure:azure-toolkit-auth-lib:jar:0.52.0:compile
[DEBUG]       org.apache.commons:commons-lang3:jar:3.14.0:compile (version managed from default)
[DEBUG]       com.google.guava:guava:jar:33.1.0-jre:compile (version managed from default) (exclusions managed from default)
[DEBUG]          com.google.guava:failureaccess:jar:1.0.2:compile
[DEBUG]          com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[DEBUG]          org.checkerframework:checker-qual:jar:3.42.0:compile
[DEBUG]          com.google.j2objc:j2objc-annotations:jar:3.0.0:compile
[DEBUG]       com.google.code.findbugs:jsr305:jar:3.0.2:compile (version managed from default)
[DEBUG]       com.fasterxml.jackson.core:jackson-core:jar:2.17.0:compile (version managed from default)
[DEBUG]       com.azure:azure-identity:jar:1.12.2:compile (version managed from default) (exclusions managed from default)
[DEBUG]          com.microsoft.azure:msal4j:jar:1.15.1:compile
[DEBUG]             com.nimbusds:oauth2-oidc-sdk:jar:9.38.1:compile (version managed from default)
[DEBUG]                com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile
[DEBUG]                com.nimbusds:content-type:jar:2.2:compile
[DEBUG]                com.nimbusds:lang-tag:jar:1.7:compile
[DEBUG]                com.nimbusds:nimbus-jose-jwt:jar:9.37.2:compile (version managed from default)
[DEBUG]             net.minidev:json-smart:jar:2.4.10:compile (version managed from default)
[DEBUG]                net.minidev:accessors-smart:jar:2.4.9:compile
[DEBUG]          com.microsoft.azure:msal4j-persistence-extension:jar:1.3.0:compile
[DEBUG]             net.java.dev.jna:jna:jar:5.13.0:compile
[DEBUG]          net.java.dev.jna:jna-platform:jar:5.6.0:compile
[DEBUG]       me.alexpanov:free-port-finder:jar:1.1.1:compile (version managed from default)
[DEBUG]       com.microsoft.azure:azure-toolkit-common-lib:jar:0.52.0:compile (version managed from default)
[DEBUG]          com.networknt:json-schema-validator:jar:1.0.70:compile (version managed from default) (exclusions managed from default)
[DEBUG]             com.ethlo.time:itu:jar:1.5.1:compile
[DEBUG]          org.aspectj:aspectjrt:jar:1.9.22:compile (version managed from default)
[DEBUG]          org.aspectj:aspectjweaver:jar:1.9.22:compile (version managed from default)
[DEBUG]          org.apache.commons:commons-exec:jar:1.4.0:compile (version managed from default)
[DEBUG]          com.github.ben-manes.caffeine:caffeine:jar:2.9.3:compile (version managed from default)
[DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.10.0:compile
[DEBUG]          org.fusesource.jansi:jansi:jar:2.4.0:compile (version managed from default)
[DEBUG]          io.reactivex:rxjava:jar:1.3.8:compile (version managed from default)
[DEBUG]          org.jetbrains:annotations:jar:24.1.0:compile (version managed from default)
[DEBUG]          org.codehaus.groovy:groovy-templates:jar:3.0.11:compile (version managed from default)
[DEBUG]             org.codehaus.groovy:groovy:jar:3.0.11:compile
[DEBUG]             org.codehaus.groovy:groovy-xml:jar:3.0.11:runtime
[DEBUG]          org.apache.httpcomponents:httpclient:jar:4.5.14:compile (version managed from default)
[DEBUG]             org.apache.httpcomponents:httpcore:jar:4.4.15:compile (version managed from default)
[DEBUG]             commons-logging:commons-logging:jar:1.2:compile
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-resources:jar:2.45.0:compile (version managed from default)
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-authorization:jar:2.45.0:compile (version managed from default)
[DEBUG]          com.microsoft.azure:applicationinsights-web:jar:2.6.4:compile (version managed from default)
[DEBUG]          org.apache.commons:commons-compress:jar:1.26.1:compile (version managed from default)
[DEBUG]       com.fasterxml.jackson.core:jackson-databind:jar:2.17.0:compile (version managed from default)
[DEBUG]          net.bytebuddy:byte-buddy:jar:1.14.9:compile
[DEBUG]    com.microsoft.azure:azure-toolkit-appservice-lib:jar:0.52.0:compile
[DEBUG]       com.azure.resourcemanager:azure-resourcemanager-appservice:jar:2.39.0:compile (version managed from default)
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-storage:jar:2.45.0:compile (version managed from default)
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-msi:jar:2.45.0:compile (version managed from default)
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-keyvault:jar:2.45.0:compile (version managed from default)
[DEBUG]             com.azure:azure-security-keyvault-keys:jar:4.9.0:compile
[DEBUG]             com.azure:azure-security-keyvault-secrets:jar:4.9.0:compile
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-dns:jar:2.39.0:compile
[DEBUG]       com.azure:azure-storage-blob:jar:12.25.3:compile (version managed from default)
[DEBUG]          com.azure:azure-storage-common:jar:12.24.3:compile
[DEBUG]          com.azure:azure-storage-internal-avro:jar:12.10.3:compile
[DEBUG]       com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.17.0:compile (version managed from default)
[DEBUG]          org.codehaus.woodstox:stax2-api:jar:4.2.2:compile
[DEBUG]          com.fasterxml.woodstox:woodstox-core:jar:6.6.1:compile
[DEBUG]       com.microsoft.azure:azure-toolkit-containerapps-lib:jar:0.52.0:compile (version managed from default)
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-appcontainers:jar:1.0.0-beta.8:compile (version managed from default)
[DEBUG]          com.microsoft.azure:azure-toolkit-containerregistry-lib:jar:0.52.0:compile (version managed from default)
[DEBUG]             com.azure.resourcemanager:azure-resourcemanager-containerregistry:jar:2.45.0:compile (version managed from default)
[DEBUG]             com.azure:azure-containers-containerregistry:jar:1.2.6:compile (version managed from default)
[DEBUG]          org.apache.httpcomponents:httpmime:jar:4.5.14:compile (version managed from default)
[DEBUG]       com.microsoft.azure:azure-toolkit-identity-lib:jar:0.52.0:compile (version managed from default)
[DEBUG]       commons-codec:commons-codec:jar:1.16.1:compile (version managed from default)
[DEBUG]       org.zeroturnaround:zt-zip:jar:1.15:compile (version managed from default)
[DEBUG]       commons-net:commons-net:jar:3.10.0:compile (version managed from default)
[DEBUG]       com.microsoft.azure:azure-toolkit-storage-lib:jar:0.52.0:compile (version managed from default)
[DEBUG]          com.azure:azure-storage-file-share:jar:12.21.3:compile (version managed from default)
[DEBUG]          com.azure:azure-storage-queue:jar:12.20.3:compile (version managed from default)
[DEBUG]          com.azure:azure-data-tables:jar:12.3.20:compile (version managed from default)
[DEBUG]       com.microsoft.azure:azure-toolkit-servicelinker-lib:jar:0.52.0:compile (version managed from default)
[DEBUG]          com.azure.resourcemanager:azure-resourcemanager-servicelinker:jar:1.0.0-beta.2:compile (version managed from default)
[DEBUG]    com.microsoft.azure:azure-toolkit-applicationinsights-lib:jar:0.52.0:compile
[DEBUG]       org.projectlombok:lombok:jar:1.18.24:provided (scope managed from default) (version managed from default)
[DEBUG]       com.azure.resourcemanager:azure-resourcemanager-applicationinsights:jar:1.0.0:compile (version managed from default)
[DEBUG]          com.azure:azure-core-management:jar:1.15.6:compile (version managed from default)
[DEBUG]       com.azure.resourcemanager:azure-resourcemanager-loganalytics:jar:1.0.0:compile (version managed from default)
[DEBUG]       com.microsoft.azure:azure-toolkit-monitor-lib:jar:0.52.0:compile (version managed from default)
[DEBUG]          com.azure:azure-monitor-query:jar:1.3.0-beta.3:compile (version managed from default)
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.8.1:compile
[DEBUG]       org.apache.maven:maven-artifact:jar:3.8.1:compile (version managed from default)
[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile (version managed from default)
[DEBUG]          javax.enterprise:cdi-api:jar:1.0:compile
[DEBUG]             javax.annotation:jsr250-api:jar:1.0:compile (version managed from default)
[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile (version managed from default)
[DEBUG]    org.apache.maven:maven-core:jar:3.8.1:compile
[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.8.1:compile (version managed from default)
[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile (version managed from default)
[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
[DEBUG]       org.apache.maven:maven-builder-support:jar:3.8.1:compile (version managed from default)
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.8.1:compile (version managed from default)
[DEBUG]       org.apache.maven:maven-model-builder:jar:3.8.1:compile (version managed from default)
[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.8.1:compile (version managed from default)
[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.6.2:compile (version managed from default)
[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.6.2:compile (version managed from default)
[DEBUG]       org.apache.maven.resolver:maven-resolver-spi:jar:1.6.2:compile (version managed from default)
[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.6.2:compile (version managed from default)
[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile (version managed from default)
[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile (version managed from default)
[DEBUG]       com.google.inject:guice:jar:no_aop:4.2.1:compile (version managed from default)
[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
[DEBUG]       javax.inject:javax.inject:jar:1:compile (version managed from default)
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default) (exclusions managed from default)
[DEBUG]    org.apache.maven:maven-settings:jar:3.8.1:compile
[DEBUG]    org.apache.maven:maven-model:jar:3.8.1:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.4.2:compile
[DEBUG]    com.microsoft.azure:azure-maven-plugin-lib:jar:1.41.0:compile
[DEBUG]       org.apache.maven.shared:maven-filtering:jar:3.3.1:compile (version managed from default)
[DEBUG]          org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile
[DEBUG]       com.microsoft.azure:applicationinsights-core:jar:2.6.4:compile (version managed from default)
[DEBUG]       org.beryx:text-io:jar:3.4.1:compile (version managed from default)
[DEBUG]          jline:jline:jar:2.14.6:runtime
[DEBUG]          org.beryx:awt-color-factory:jar:1.0.1:runtime
[DEBUG]       org.yaml:snakeyaml:jar:2.2:compile (version managed from default)
[DEBUG]       jakarta.xml.bind:jakarta.xml.bind-api:jar:3.0.1:compile (version managed from default)
[DEBUG]          com.sun.activation:jakarta.activation:jar:2.0.1:compile
[DEBUG]       org.glassfish.jaxb:jaxb-runtime:jar:3.0.2:compile (version managed from default)
[DEBUG]          org.glassfish.jaxb:jaxb-core:jar:3.0.2:compile
[DEBUG]             org.glassfish.jaxb:txw2:jar:3.0.2:compile
[DEBUG]             com.sun.istack:istack-commons-runtime:jar:4.0.1:compile
[DEBUG]       org.dom4j:dom4j:jar:2.1.4:compile (version managed from default)
[DEBUG]       com.github.java-json-tools:json-schema-validator:jar:2.2.14:compile (version managed from default)
[DEBUG]          com.github.java-json-tools:jackson-coreutils-equivalence:jar:1.0:compile
[DEBUG]             com.github.java-json-tools:jackson-coreutils:jar:2.0:compile
[DEBUG]                com.github.java-json-tools:msg-simple:jar:1.2:compile
[DEBUG]                   com.github.java-json-tools:btf:jar:1.3:compile
[DEBUG]          com.github.java-json-tools:json-schema-core:jar:1.2.14:compile
[DEBUG]             com.github.java-json-tools:uri-template:jar:0.10:compile
[DEBUG]             org.mozilla:rhino:jar:1.7.7.2:compile
[DEBUG]          com.sun.mail:mailapi:jar:1.6.2:compile
[DEBUG]          joda-time:joda-time:jar:2.10.14:compile (version managed from default)
[DEBUG]          com.googlecode.libphonenumber:libphonenumber:jar:8.11.1:compile
[DEBUG]          net.sf.jopt-simple:jopt-simple:jar:5.0.4:compile
[DEBUG]    com.microsoft.azure:azure-appservice-maven-plugin-lib:jar:1.41.0:compile
[DEBUG]       org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided (scope managed from default) (version managed from default)
[DEBUG]    org.reflections:reflections:jar:0.10.2:compile
[DEBUG]       org.javassist:javassist:jar:3.28.0-GA:compile
[DEBUG]    com.github.zafarkhaja:java-semver:jar:0.9.0:compile
[DEBUG]    org.apache.maven:maven-compat:jar:3.8.1:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.26:compile (version managed from default)
[DEBUG]       org.apache.maven.wagon:wagon-provider-api:jar:3.4.3:compile (version managed from default)
[DEBUG]    org.jacoco:org.jacoco.agent:jar:runtime:0.8.8:compile
[DEBUG]    com.fasterxml.jackson.dataformat:jackson-dataformat-properties:jar:2.17.0:compile
[DEBUG] Created new class realm plugin>com.microsoft.azure:azure-functions-maven-plugin:1.37.0
[DEBUG] Importing foreign packages into class realm plugin>com.microsoft.azure:azure-functions-maven-plugin:1.37.0
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm plugin>com.microsoft.azure:azure-functions-maven-plugin:1.37.0
[DEBUG]   Included: com.microsoft.azure:azure-functions-maven-plugin:jar:1.37.0
[DEBUG]   Included: org.apache.maven.plugins:maven-shade-plugin:jar:3.4.1
[DEBUG]   Included: org.apache.maven.shared:maven-artifact-transfer:jar:0.13.1
[DEBUG]   Included: org.apache.maven.shared:maven-common-artifact-filters:jar:3.1.0
[DEBUG]   Included: org.ow2.asm:asm:jar:9.3
[DEBUG]   Included: org.ow2.asm:asm-commons:jar:9.6
[DEBUG]   Included: org.ow2.asm:asm-tree:jar:9.6
[DEBUG]   Included: org.jdom:jdom2:jar:2.0.6.1
[DEBUG]   Included: org.apache.maven.shared:maven-dependency-tree:jar:3.2.0
[DEBUG]   Included: commons-io:commons-io:jar:2.16.0
[DEBUG]   Included: org.vafer:jdependency:jar:2.8.0
[DEBUG]   Included: org.apache.commons:commons-collections4:jar:4.4
[DEBUG]   Included: io.projectreactor.netty:reactor-netty:jar:1.1.13
[DEBUG]   Included: io.projectreactor.netty:reactor-netty-core:jar:1.1.13
[DEBUG]   Included: io.netty:netty-resolver-dns:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-codec-dns:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.101.Final
[DEBUG]   Included: io.netty:netty-resolver-dns-classes-macos:jar:4.1.101.Final
[DEBUG]   Included: io.projectreactor:reactor-core:jar:3.6.4
[DEBUG]   Included: org.reactivestreams:reactive-streams:jar:1.0.4
[DEBUG]   Included: io.projectreactor.netty:reactor-netty-http:jar:1.1.13
[DEBUG]   Included: io.projectreactor.netty.incubator:reactor-netty-incubator-quic:jar:0.1.13
[DEBUG]   Included: io.netty.incubator:netty-incubator-codec-native-quic:jar:linux-x86_64:0.0.52.Final
[DEBUG]   Included: io.netty.incubator:netty-incubator-codec-classes-quic:jar:0.0.52.Final
[DEBUG]   Included: com.azure:azure-core-http-netty:jar:1.14.1
[DEBUG]   Included: com.azure:azure-core:jar:1.54.1
[DEBUG]   Included: com.azure:azure-json:jar:1.3.0
[DEBUG]   Included: com.azure:azure-xml:jar:1.1.0
[DEBUG]   Included: com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0
[DEBUG]   Included: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0
[DEBUG]   Included: io.netty:netty-handler:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-resolver:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-transport:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-handler-proxy:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-codec-socks:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-buffer:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-codec:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-codec-http:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-codec-http2:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-transport-native-unix-common:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.101.Final
[DEBUG]   Included: io.netty:netty-transport-classes-epoll:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.101.Final
[DEBUG]   Included: io.netty:netty-transport-classes-kqueue:jar:4.1.101.Final
[DEBUG]   Included: io.netty:netty-tcnative-boringssl-static:jar:2.0.62.Final
[DEBUG]   Included: io.netty:netty-tcnative-classes:jar:2.0.62.Final
[DEBUG]   Included: io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.62.Final
[DEBUG]   Included: io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.62.Final
[DEBUG]   Included: io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.62.Final
[DEBUG]   Included: io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.62.Final
[DEBUG]   Included: io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.62.Final
[DEBUG]   Included: io.netty:netty-common:jar:4.1.101.Final
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-auth-lib:jar:0.52.0
[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.14.0
[DEBUG]   Included: com.google.guava:guava:jar:33.1.0-jre
[DEBUG]   Included: com.google.guava:failureaccess:jar:1.0.2
[DEBUG]   Included: com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava
[DEBUG]   Included: org.checkerframework:checker-qual:jar:3.42.0
[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:3.0.0
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
[DEBUG]   Included: com.fasterxml.jackson.core:jackson-core:jar:2.17.0
[DEBUG]   Included: com.azure:azure-identity:jar:1.12.2
[DEBUG]   Included: com.microsoft.azure:msal4j:jar:1.15.1
[DEBUG]   Included: com.nimbusds:oauth2-oidc-sdk:jar:9.38.1
[DEBUG]   Included: com.github.stephenc.jcip:jcip-annotations:jar:1.0-1
[DEBUG]   Included: com.nimbusds:content-type:jar:2.2
[DEBUG]   Included: com.nimbusds:lang-tag:jar:1.7
[DEBUG]   Included: com.nimbusds:nimbus-jose-jwt:jar:9.37.2
[DEBUG]   Included: net.minidev:json-smart:jar:2.4.10
[DEBUG]   Included: net.minidev:accessors-smart:jar:2.4.9
[DEBUG]   Included: com.microsoft.azure:msal4j-persistence-extension:jar:1.3.0
[DEBUG]   Included: net.java.dev.jna:jna:jar:5.13.0
[DEBUG]   Included: net.java.dev.jna:jna-platform:jar:5.6.0
[DEBUG]   Included: me.alexpanov:free-port-finder:jar:1.1.1
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-common-lib:jar:0.52.0
[DEBUG]   Included: com.networknt:json-schema-validator:jar:1.0.70
[DEBUG]   Included: com.ethlo.time:itu:jar:1.5.1
[DEBUG]   Included: org.aspectj:aspectjrt:jar:1.9.22
[DEBUG]   Included: org.aspectj:aspectjweaver:jar:1.9.22
[DEBUG]   Included: org.apache.commons:commons-exec:jar:1.4.0
[DEBUG]   Included: com.github.ben-manes.caffeine:caffeine:jar:2.9.3
[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.10.0
[DEBUG]   Included: io.reactivex:rxjava:jar:1.3.8
[DEBUG]   Included: org.jetbrains:annotations:jar:24.1.0
[DEBUG]   Included: org.codehaus.groovy:groovy-templates:jar:3.0.11
[DEBUG]   Included: org.codehaus.groovy:groovy:jar:3.0.11
[DEBUG]   Included: org.codehaus.groovy:groovy-xml:jar:3.0.11
[DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.5.14
[DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.4.15
[DEBUG]   Included: commons-logging:commons-logging:jar:1.2
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-resources:jar:2.45.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-authorization:jar:2.45.0
[DEBUG]   Included: com.microsoft.azure:applicationinsights-web:jar:2.6.4
[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.26.1
[DEBUG]   Included: com.fasterxml.jackson.core:jackson-databind:jar:2.17.0
[DEBUG]   Included: net.bytebuddy:byte-buddy:jar:1.14.9
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-appservice-lib:jar:0.52.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-appservice:jar:2.39.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-storage:jar:2.45.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-msi:jar:2.45.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-keyvault:jar:2.45.0
[DEBUG]   Included: com.azure:azure-security-keyvault-keys:jar:4.9.0
[DEBUG]   Included: com.azure:azure-security-keyvault-secrets:jar:4.9.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-dns:jar:2.39.0
[DEBUG]   Included: com.azure:azure-storage-blob:jar:12.25.3
[DEBUG]   Included: com.azure:azure-storage-common:jar:12.24.3
[DEBUG]   Included: com.azure:azure-storage-internal-avro:jar:12.10.3
[DEBUG]   Included: com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.17.0
[DEBUG]   Included: org.codehaus.woodstox:stax2-api:jar:4.2.2
[DEBUG]   Included: com.fasterxml.woodstox:woodstox-core:jar:6.6.1
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-containerapps-lib:jar:0.52.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-appcontainers:jar:1.0.0-beta.8
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-containerregistry-lib:jar:0.52.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-containerregistry:jar:2.45.0
[DEBUG]   Included: com.azure:azure-containers-containerregistry:jar:1.2.6
[DEBUG]   Included: org.apache.httpcomponents:httpmime:jar:4.5.14
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-identity-lib:jar:0.52.0
[DEBUG]   Included: commons-codec:commons-codec:jar:1.16.1
[DEBUG]   Included: org.zeroturnaround:zt-zip:jar:1.15
[DEBUG]   Included: commons-net:commons-net:jar:3.10.0
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-storage-lib:jar:0.52.0
[DEBUG]   Included: com.azure:azure-storage-file-share:jar:12.21.3
[DEBUG]   Included: com.azure:azure-storage-queue:jar:12.20.3
[DEBUG]   Included: com.azure:azure-data-tables:jar:12.3.20
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-servicelinker-lib:jar:0.52.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-servicelinker:jar:1.0.0-beta.2
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-applicationinsights-lib:jar:0.52.0
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-applicationinsights:jar:1.0.0
[DEBUG]   Included: com.azure:azure-core-management:jar:1.15.6
[DEBUG]   Included: com.azure.resourcemanager:azure-resourcemanager-loganalytics:jar:1.0.0
[DEBUG]   Included: com.microsoft.azure:azure-toolkit-monitor-lib:jar:0.52.0
[DEBUG]   Included: com.azure:azure-monitor-query:jar:1.3.0-beta.3
[DEBUG]   Included: javax.enterprise:cdi-api:jar:1.0
[DEBUG]   Included: javax.annotation:jsr250-api:jar:1.0
[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.8.1
[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.4.2
[DEBUG]   Included: com.microsoft.azure:azure-maven-plugin-lib:jar:1.41.0
[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:3.3.1
[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7
[DEBUG]   Included: com.microsoft.azure:applicationinsights-core:jar:2.6.4
[DEBUG]   Included: org.beryx:text-io:jar:3.4.1
[DEBUG]   Included: jline:jline:jar:2.14.6
[DEBUG]   Included: org.beryx:awt-color-factory:jar:1.0.1
[DEBUG]   Included: org.yaml:snakeyaml:jar:2.2
[DEBUG]   Included: jakarta.xml.bind:jakarta.xml.bind-api:jar:3.0.1
[DEBUG]   Included: com.sun.activation:jakarta.activation:jar:2.0.1
[DEBUG]   Included: org.glassfish.jaxb:jaxb-runtime:jar:3.0.2
[DEBUG]   Included: org.glassfish.jaxb:jaxb-core:jar:3.0.2
[DEBUG]   Included: org.glassfish.jaxb:txw2:jar:3.0.2
[DEBUG]   Included: com.sun.istack:istack-commons-runtime:jar:4.0.1
[DEBUG]   Included: org.dom4j:dom4j:jar:2.1.4
[DEBUG]   Included: com.github.java-json-tools:json-schema-validator:jar:2.2.14
[DEBUG]   Included: com.github.java-json-tools:jackson-coreutils-equivalence:jar:1.0
[DEBUG]   Included: com.github.java-json-tools:jackson-coreutils:jar:2.0
[DEBUG]   Included: com.github.java-json-tools:msg-simple:jar:1.2
[DEBUG]   Included: com.github.java-json-tools:btf:jar:1.3
[DEBUG]   Included: com.github.java-json-tools:json-schema-core:jar:1.2.14
[DEBUG]   Included: com.github.java-json-tools:uri-template:jar:0.10
[DEBUG]   Included: org.mozilla:rhino:jar:1.7.7.2
[DEBUG]   Included: com.sun.mail:mailapi:jar:1.6.2
[DEBUG]   Included: joda-time:joda-time:jar:2.10.14
[DEBUG]   Included: com.googlecode.libphonenumber:libphonenumber:jar:8.11.1
[DEBUG]   Included: net.sf.jopt-simple:jopt-simple:jar:5.0.4
[DEBUG]   Included: com.microsoft.azure:azure-appservice-maven-plugin-lib:jar:1.41.0
[DEBUG]   Included: org.reflections:reflections:jar:0.10.2
[DEBUG]   Included: org.javassist:javassist:jar:3.28.0-GA
[DEBUG]   Included: com.github.zafarkhaja:java-semver:jar:0.9.0
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.26
[DEBUG]   Included: org.jacoco:org.jacoco.agent:jar:runtime:0.8.8
[DEBUG]   Included: com.fasterxml.jackson.dataformat:jackson-dataformat-properties:jar:2.17.0
[DEBUG] Loading mojo com.microsoft.azure:azure-functions-maven-plugin:1.37.0:package from plugin realm ClassRealm[plugin>com.microsoft.azure:azure-functions-maven-plugin:1.37.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@42110406]
[DEBUG] Configuring mojo execution 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:package:package-functions' with basic configurator -->
[DEBUG]   (f) allowTelemetry = true
[DEBUG]   (f) appInsightsInstance = appi-4frwx3l2fnxrg
[DEBUG]   (f) appInsightsKey = 9d92bb5f-a956-42a0-b893-f0c230633535
[DEBUG]   (f) appName = func-api-4frwx3l2fnxrg-functions
[DEBUG]   (f) appServicePlanName = plan-4frwx3l2fnxrg
[DEBUG]   (f) appSettings = {FUNCTIONS_EXTENSION_VERSION=~4}
[DEBUG]   (f) auth = com.microsoft.azure.maven.model.MavenAuthConfiguration@30fffb53
[DEBUG]   (f) buildDirectory = /Users/** redacted **/flexconsumptiontest/http/target
[DEBUG]   (f) buildJarWithDependencies = false
[DEBUG]   (f) disableAppInsights = false
[DEBUG]   (f) failsOnError = true
[DEBUG]   (f) failsOnRuntimeValidationError = true
[DEBUG]   (f) finalName = contoso-functions-1.0-SNAPSHOT
[DEBUG]   (f) hostJson = host.json
[DEBUG]   (f) localSettingsJson = local.settings.json
[DEBUG]   (f) outputDirectory = /Users/** redacted **/flexconsumptiontest/http/target/classes
[DEBUG]   (f) plugin = Component Descriptor: role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.AddMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:add'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.DeployMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.azure_functions_maven_plugin.HelpMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:help'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.ListMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:list'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.PackageMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:package'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.RunMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:run'
---
[DEBUG]   (f) #Tier = Flex Consumption
[DEBUG]   (f) project = MavenProject: com.contoso:contoso-functions:1.0-SNAPSHOT @ /Users/** redacted **/flexconsumptiontest/http/pom.xml
[DEBUG]   (f) region = swedencentral
[DEBUG]   (f) resourceGroup = rg-flexconsumption
[DEBUG]   (s) os = linux
[DEBUG]   (s) javaVersion = 17
[DEBUG]   (f) runtime = com.microsoft.azure.toolkit.lib.legacy.function.configurations.RuntimeConfiguration@7959fbe3
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@767191b1
[DEBUG]   (f) settings = org.apache.maven.execution.SettingsAdapter@75c0e6be
[DEBUG]   (f) skip = false
[DEBUG]   (f) skipCopyDependencies = false
[DEBUG]   (f) skipInstallExtensions = false
[DEBUG] -- end configuration --
[DEBUG] orphan context[{id: 327af731, threadId:-1, parent:/}] is setup
[INFO] Java home : ** redacted **
[INFO] Artifact compile version : 17
[INFO] 
[INFO] Step 1 of 8: Searching for Azure Functions entry points
[DEBUG] ClassPath to resolve: file:/Users/** redacted **/flexconsumptiontest/http/target/classes/
[INFO] 2 Azure Functions entry point(s) found.
[INFO] 
[INFO] Step 2 of 8: Generating Azure Functions configurations
[DEBUG] Starting processing function : httppost
[DEBUG] Adding binding: [ name: req, type: httpTrigger, direction: in ]
[DEBUG] No StorageAccount annotation found.
[DEBUG] Starting processing function : httpget
[DEBUG] Adding binding: [ name: req, type: httpTrigger, direction: in ]
[DEBUG] No StorageAccount annotation found.
[INFO] Generation done.
[INFO] 
[INFO] Step 3 of 8: Validating generated configurations
[INFO] Validation done.
[INFO] 
[INFO] Step 4 of 8: Copying/creating host.json
[INFO] Successfully saved to /Users/** redacted **/flexconsumptiontest/http/target/azure-functions/func-api-4frwx3l2fnxrg-functions/host.json
[INFO] 
[INFO] Step 5 of 8: Copying/creating local.settings.json
[INFO] Successfully saved to /Users/** redacted **/flexconsumptiontest/http/target/azure-functions/func-api-4frwx3l2fnxrg-functions/local.settings.json
[INFO] 
[INFO] Step 6 of 8: Saving configurations to function.json
[INFO] Starting processing function: httppost
[INFO] Successfully saved to /Users/** redacted **/flexconsumptiontest/http/target/azure-functions/func-api-4frwx3l2fnxrg-functions/httppost/function.json
[INFO] Starting processing function: httpget
[INFO] Successfully saved to /Users/** redacted **/flexconsumptiontest/http/target/azure-functions/func-api-4frwx3l2fnxrg-functions/httpget/function.json
[INFO] 
[INFO] Step 7 of 8: Copying JARs to staging directory /Users/** redacted **/flexconsumptiontest/http/target/azure-functions/func-api-4frwx3l2fnxrg-functions
[INFO] Copied successfully.
[INFO] Step 8 of 8: Installing function extensions if needed
[INFO] Extension bundle specified, skip install extension
[INFO] Successfully built Azure Functions.
[DEBUG] orphan context[{id: 327af731, threadId:-1, parent:/}] is disposed
[INFO] 
[INFO] --- azure-functions:1.37.0:deploy (default-cli) @ contoso-functions ---
[DEBUG] Loading mojo com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy from plugin realm ClassRealm[plugin>com.microsoft.azure:azure-functions-maven-plugin:1.37.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@42110406]
[DEBUG] Configuring mojo execution 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy:default-cli' with basic configurator -->
[DEBUG]   (f) allowTelemetry = true
[DEBUG]   (f) alwaysReadyInstances = {}
[DEBUG]   (f) appInsightsInstance = appi-4frwx3l2fnxrg
[DEBUG]   (f) appInsightsKey = 9d92bb5f-a956-42a0-b893-f0c230633535
[DEBUG]   (f) appName = func-api-4frwx3l2fnxrg-functions
[DEBUG]   (f) appServicePlanName = plan-4frwx3l2fnxrg
[DEBUG]   (f) appSettings = {FUNCTIONS_EXTENSION_VERSION=~4}
[DEBUG]   (f) auth = com.microsoft.azure.maven.model.MavenAuthConfiguration@79059313
[DEBUG]   (f) buildDirectory = /Users/** redacted **/flexconsumptiontest/http/target
[DEBUG]   (f) deploymentStorageAccount = st4frwx3l2fnxrg
[DEBUG]   (f) deploymentStorageContainer = deploymentpackage
[DEBUG]   (f) deploymentStorageResourceGroup = rg-flexconsumption
[DEBUG]   (f) disableAppInsights = false
[DEBUG]   (f) failsOnError = true
[DEBUG]   (f) failsOnRuntimeValidationError = true
[DEBUG]   (f) finalName = contoso-functions-1.0-SNAPSHOT
[DEBUG]   (f) hostJson = host.json
[DEBUG]   (f) localSettingsJson = local.settings.json
[DEBUG]   (f) outputDirectory = /Users/** redacted **/flexconsumptiontest/http/target/classes
[DEBUG]   (f) plugin = Component Descriptor: role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.AddMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:add'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.DeployMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.azure_functions_maven_plugin.HelpMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:help'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.ListMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:list'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.PackageMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:package'
role: 'org.apache.maven.plugin.Mojo', implementation: 'com.microsoft.azure.maven.function.RunMojo', role hint: 'com.microsoft.azure:azure-functions-maven-plugin:1.37.0:run'
---
[DEBUG]   (f) #Tier = Flex Consumption
[DEBUG]   (f) project = MavenProject: com.contoso:contoso-functions:1.0-SNAPSHOT @ /Users/** redacted **/flexconsumptiontest/http/pom.xml
[DEBUG]   (f) region = swedencentral
[DEBUG]   (f) resourceGroup = rg-flexconsumption
[DEBUG]   (s) os = linux
[DEBUG]   (s) javaVersion = 17
[DEBUG]   (f) runtime = com.microsoft.azure.toolkit.lib.legacy.function.configurations.RuntimeConfiguration@222e9ace
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@767191b1
[DEBUG]   (f) settings = org.apache.maven.execution.SettingsAdapter@75c0e6be
[DEBUG]   (f) skip = false
[DEBUG]   (f) skipEndOfLifeValidation = false
[DEBUG]   (f) storageAuthenticationMethod = UserAssignedIdentity
[DEBUG]   (f) userAssignedIdentityResourceId = id-api-4frwx3l2fnxrg
[DEBUG] -- end configuration --
[DEBUG] orphan context[{id: 2ff9a06, threadId:-1, parent:/}] is setup
[DEBUG] Using Slf4j logging framework
[DEBUG] {"az.sdk.message":"Loaded default provider.","providerName":"com.azure.core.http.netty.NettyAsyncHttpClientProvider","providerClass":"com.azure.core.http.HttpClientProvider"}
[DEBUG] Using SLF4J as the default logging framework
[DEBUG] -Dio.netty.noUnsafe: false
[DEBUG] Java version: 17
[DEBUG] sun.misc.Unsafe.theUnsafe: available
[DEBUG] sun.misc.Unsafe.copyMemory: available
[DEBUG] sun.misc.Unsafe.storeFence: available
[DEBUG] java.nio.Buffer.address: available
[DEBUG] direct buffer constructor: unavailable: Reflective setAccessible(true) disabled
[DEBUG] java.nio.Bits.unaligned: available, true
[DEBUG] jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable: class io.netty.util.internal.PlatformDependent0$7 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to unnamed module @732ae29c
[DEBUG] java.nio.DirectByteBuffer.<init>(long, {int,long}): unavailable
[DEBUG] sun.misc.Unsafe: available
[DEBUG] -Dio.netty.tmpdir: /var/folders/q6/5hphtn2n5vz6d7_0z96zw9xw0000gp/T (java.io.tmpdir)
[DEBUG] -Dio.netty.bitMode: 64 (sun.arch.data.model)
[DEBUG] Platform: MacOS
[DEBUG] -Dio.netty.maxDirectMemory: -1 bytes
[DEBUG] -Dio.netty.uninitializedArrayAllocationThreshold: -1
[DEBUG] java.nio.ByteBuffer.cleaner(): available
[DEBUG] -Dio.netty.noPreferDirect: false
[DEBUG] -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
[DEBUG] -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
[DEBUG] -Dio.netty.leakDetection.level: simple
[DEBUG] -Dio.netty.leakDetection.targetRecords: 4
[INFO] Auth type: AZURE_CLI
[INFO] Username: ** redacted **
[DEBUG] orphan context[{id: 203ad63b, threadId:-1, parent:/}] is setup
[DEBUG] orphan context[{id: 52c041c, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.Web]:clear()
[DEBUG] orphan context[{id: 7dc64287, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.ContainerRegistry]:clear()
[DEBUG] [Microsoft.Web]:refresh()
[DEBUG] orphan context[{id: 7f186f14, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.ManagedIdentity]:clear()
[DEBUG] [Microsoft.ManagedIdentity]:refresh()
[DEBUG] [Microsoft.ManagedIdentity]:invalidateCache()
[DEBUG] orphan context[{id: 60824fbb, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.Web]:clear()
[DEBUG] orphan context[{id: 35694b52, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.Insights]:clear()
[DEBUG] [Microsoft.Insights]:refresh()
[DEBUG] [Microsoft.Insights]:invalidateCache()
[DEBUG] orphan context[{id: 2c8571a4, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.ManagedIdentity]:invalidateCache->resources.invalidateCache()
[DEBUG] [Microsoft.Storage]:clear()
[DEBUG] [Microsoft.Storage]:refresh()
[DEBUG] [Microsoft.Storage]:invalidateCache()
[DEBUG] [Microsoft.Storage]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 38743b69, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.OperationalInsights]:clear()
[DEBUG] [Microsoft.OperationalInsights]:refresh()
[DEBUG] [Microsoft.OperationalInsights]:invalidateCache()
[DEBUG] [Microsoft.OperationalInsights]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 7f186f14, threadId:-1, parent:/}] is disposed
[DEBUG] [Microsoft.Insights]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 2c8571a4, threadId:-1, parent:/}] is disposed
[DEBUG] orphan context[{id: 35694b52, threadId:-1, parent:/}] is disposed
[DEBUG] [Microsoft.Web]:invalidateCache()
[DEBUG] [Microsoft.Web]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 52c041c, threadId:-1, parent:/}] is disposed
[DEBUG] [Microsoft.ContainerRegistry]:refresh()
[DEBUG] [Microsoft.ContainerRegistry]:invalidateCache()
[DEBUG] [Microsoft.ContainerRegistry]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 7dc64287, threadId:-1, parent:/}] is disposed
[INFO] Subscription: Azure Dev Subscription(** redacted **)
[DEBUG] orphan context[{id: 38743b69, threadId:-1, parent:/}] is disposed
[DEBUG] orphan context[{id: dbfe98e, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.Resources]:clear()
[DEBUG] [Microsoft.Resources]:refresh()
[DEBUG] [Microsoft.Resources]:invalidateCache()
[DEBUG] [Microsoft.Resources]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: dbfe98e, threadId:-1, parent:/}] is disposed
[DEBUG] [Microsoft.Web]:clear()
[DEBUG] [Microsoft.Web]:refresh()
[DEBUG] [Microsoft.Web]:invalidateCache()
[DEBUG] [Microsoft.Web]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 203ad63b, threadId:-1, parent:/}] is disposed
[DEBUG] orphan context[{id: 16372294, threadId:-1, parent:/}] is setup
[DEBUG] [Microsoft.App]:clear()
[DEBUG] [Microsoft.App]:refresh()
[DEBUG] [Microsoft.App]:invalidateCache()
[DEBUG] [Microsoft.App]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 16372294, threadId:-1, parent:/}] is disposed
[DEBUG] [Microsoft.Web]:refresh()
[DEBUG] [Microsoft.Web]:invalidateCache()
[DEBUG] [Microsoft.Web]:invalidateCache->resources.invalidateCache()
[DEBUG] orphan context[{id: 60824fbb, threadId:-1, parent:/}] is disposed
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})->loadResourceFromAzure()
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})->addResourceToLocal(** redacted **, resource)
[DEBUG] [Microsoft.Web:** redacted **]:setRemote(com.azure.resourcemanager.appservice.AppServiceManager@1e1d8f23)
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->subModules.invalidateCache()
[DEBUG] [Microsoft.Web]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/${rg}/providers/Microsoft.Web, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [Microsoft.Web]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [sites]:invalidateCache()
[DEBUG] [sites]:invalidateCache->resources.invalidateCache()
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->this.remoteRef.set(com.azure.resourcemanager.appservice.AppServiceManager@1e1d8f23)
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->setStatus(LOADING)
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->this.loadStatus
[DEBUG] [Microsoft.Web:** redacted **]:setStatus(OK)
[DEBUG] -Djava.net.preferIPv4Stack: false
[DEBUG] -Djava.net.preferIPv6Addresses: false
[DEBUG] Loopback interface: lo0 (lo0, 0:0:0:0:0:0:0:1%lo0)
[DEBUG] Failed to get SOMAXCONN from sysctl and file /proc/sys/net/core/somaxconn. Default: 128
[DEBUG] -Dio.netty.native.workdir: /var/folders/q6/5hphtn2n5vz6d7_0z96zw9xw0000gp/T (io.netty.tmpdir)
[DEBUG] -Dio.netty.native.deleteLibAfterLoading: true
[DEBUG] -Dio.netty.native.tryPatchShadedId: true
[DEBUG] -Dio.netty.native.detectNativeLibraryDuplicates: true
[DEBUG] [** redacted **]:fireStatusChangedEvent()
[DEBUG] Successfully loaded the library /var/folders/q6/5hphtn2n5vz6d7_0z96zw9xw0000gp/T/libnetty_tcnative_osx_aarch_6412829904528545792850.dylib
[DEBUG] Loaded library with name 'netty_tcnative_osx_aarch_64'
[DEBUG] Initialize netty-tcnative using engine: 'default'
[DEBUG] netty-tcnative using native library: BoringSSL
[DEBUG] -Dio.netty.buffer.checkAccessible: true
[DEBUG] -Dio.netty.buffer.checkBounds: true
[DEBUG] Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@4cdc345f
[DEBUG] -Dio.netty.allocator.numHeapArenas: 24
[DEBUG] -Dio.netty.allocator.numDirectArenas: 24
[DEBUG] -Dio.netty.allocator.pageSize: 8192
[DEBUG] -Dio.netty.allocator.maxOrder: 9
[DEBUG] -Dio.netty.allocator.chunkSize: 4194304
[DEBUG] -Dio.netty.allocator.smallCacheSize: 256
[DEBUG] -Dio.netty.allocator.normalCacheSize: 64
[DEBUG] -Dio.netty.allocator.maxCachedBufferCapacity: 32768
[DEBUG] -Dio.netty.allocator.cacheTrimInterval: 8192
[DEBUG] -Dio.netty.allocator.cacheTrimIntervalMillis: 0
[DEBUG] -Dio.netty.allocator.useCacheForAllThreads: false
[DEBUG] -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023
[DEBUG] -Dio.netty.allocator.type: pooled
[DEBUG] -Dio.netty.threadLocalDirectBufferSize: 0
[DEBUG] -Dio.netty.maxThreadLocalCharBufferSize: 16384
[DEBUG] Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@1703b09a
[DEBUG] -Dio.netty.recycler.maxCapacityPerThread: 4096
[DEBUG] -Dio.netty.recycler.ratio: 8
[DEBUG] -Dio.netty.recycler.chunkSize: 32
[DEBUG] -Dio.netty.recycler.blocking: false
[DEBUG] -Dio.netty.recycler.batchFastThreadLocalOnly: true
[DEBUG] org.jctools-core.MpscChunkedArrayQueue: available
[DEBUG] Cipher suite mapping: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 => ECDHE-ECDSA-AES128-GCM-SHA256
[DEBUG] Cipher suite mapping: SSL_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 => ECDHE-ECDSA-AES128-GCM-SHA256
[DEBUG] Cipher suite mapping: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 => ECDHE-RSA-AES128-GCM-SHA256
[DEBUG] Cipher suite mapping: SSL_ECDHE_RSA_WITH_AES_128_GCM_SHA256 => ECDHE-RSA-AES128-GCM-SHA256
[DEBUG] Cipher suite mapping: TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 => ECDHE-ECDSA-AES256-GCM-SHA384
[DEBUG] Cipher suite mapping: SSL_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 => ECDHE-ECDSA-AES256-GCM-SHA384
[DEBUG] Cipher suite mapping: TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 => ECDHE-RSA-AES256-GCM-SHA384
[DEBUG] Cipher suite mapping: SSL_ECDHE_RSA_WITH_AES_256_GCM_SHA384 => ECDHE-RSA-AES256-GCM-SHA384
[DEBUG] Cipher suite mapping: TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 => ECDHE-ECDSA-CHACHA20-POLY1305
[DEBUG] Cipher suite mapping: SSL_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 => ECDHE-ECDSA-CHACHA20-POLY1305
[DEBUG] Cipher suite mapping: TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 => ECDHE-RSA-CHACHA20-POLY1305
[DEBUG] Cipher suite mapping: SSL_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 => ECDHE-RSA-CHACHA20-POLY1305
[DEBUG] Cipher suite mapping: TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 => ECDHE-PSK-CHACHA20-POLY1305
[DEBUG] Cipher suite mapping: SSL_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 => ECDHE-PSK-CHACHA20-POLY1305
[DEBUG] Cipher suite mapping: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA => ECDHE-ECDSA-AES128-SHA
[DEBUG] Cipher suite mapping: SSL_ECDHE_ECDSA_WITH_AES_128_CBC_SHA => ECDHE-ECDSA-AES128-SHA
[DEBUG] Cipher suite mapping: TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA => ECDHE-RSA-AES128-SHA
[DEBUG] Cipher suite mapping: SSL_ECDHE_RSA_WITH_AES_128_CBC_SHA => ECDHE-RSA-AES128-SHA
[DEBUG] Cipher suite mapping: TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA => ECDHE-PSK-AES128-CBC-SHA
[DEBUG] Cipher suite mapping: SSL_ECDHE_PSK_WITH_AES_128_CBC_SHA => ECDHE-PSK-AES128-CBC-SHA
[DEBUG] Cipher suite mapping: TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA => ECDHE-ECDSA-AES256-SHA
[DEBUG] Cipher suite mapping: SSL_ECDHE_ECDSA_WITH_AES_256_CBC_SHA => ECDHE-ECDSA-AES256-SHA
[DEBUG] Cipher suite mapping: TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA => ECDHE-RSA-AES256-SHA
[DEBUG] Cipher suite mapping: SSL_ECDHE_RSA_WITH_AES_256_CBC_SHA => ECDHE-RSA-AES256-SHA
[DEBUG] Cipher suite mapping: TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA => ECDHE-PSK-AES256-CBC-SHA
[DEBUG] Cipher suite mapping: SSL_ECDHE_PSK_WITH_AES_256_CBC_SHA => ECDHE-PSK-AES256-CBC-SHA
[DEBUG] Cipher suite mapping: TLS_RSA_WITH_AES_128_GCM_SHA256 => AES128-GCM-SHA256
[DEBUG] Cipher suite mapping: SSL_RSA_WITH_AES_128_GCM_SHA256 => AES128-GCM-SHA256
[DEBUG] Cipher suite mapping: TLS_RSA_WITH_AES_256_GCM_SHA384 => AES256-GCM-SHA384
[DEBUG] Cipher suite mapping: SSL_RSA_WITH_AES_256_GCM_SHA384 => AES256-GCM-SHA384
[DEBUG] Cipher suite mapping: TLS_RSA_WITH_AES_128_CBC_SHA => AES128-SHA
[DEBUG] Cipher suite mapping: SSL_RSA_WITH_AES_128_CBC_SHA => AES128-SHA
[DEBUG] Cipher suite mapping: TLS_PSK_WITH_AES_128_CBC_SHA => PSK-AES128-CBC-SHA
[DEBUG] Cipher suite mapping: SSL_PSK_WITH_AES_128_CBC_SHA => PSK-AES128-CBC-SHA
[DEBUG] Cipher suite mapping: TLS_RSA_WITH_AES_256_CBC_SHA => AES256-SHA
[DEBUG] Cipher suite mapping: SSL_RSA_WITH_AES_256_CBC_SHA => AES256-SHA
[DEBUG] Cipher suite mapping: TLS_PSK_WITH_AES_256_CBC_SHA => PSK-AES256-CBC-SHA
[DEBUG] Cipher suite mapping: SSL_PSK_WITH_AES_256_CBC_SHA => PSK-AES256-CBC-SHA
[DEBUG] Cipher suite mapping: TLS_RSA_WITH_3DES_EDE_CBC_SHA => DES-CBC3-SHA
[DEBUG] Cipher suite mapping: SSL_RSA_WITH_3DES_EDE_CBC_SHA => DES-CBC3-SHA
[DEBUG] Supported protocols (OpenSSL): [SSLv2Hello, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3] 
[DEBUG] Default cipher suites (OpenSSL): [TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, TLS_CHACHA20_POLY1305_SHA256]
[DEBUG] [http] resources will use the default LoopResources: DefaultLoopResources {prefix=reactor-http, daemon=true, selectCount=12, workerCount=12}
[DEBUG] [http] resources will use the default ConnectionProvider: reactor.netty.resources.DefaultPooledConnectionProvider@2432c72c
[DEBUG] Creating a new [http] client pool [PoolFactory{evictionInterval=PT0S, leasingStrategy=fifo, maxConnections=500, maxIdleTime=-1, maxLifeTime=-1, metricsEnabled=false, pendingAcquireMaxCount=1000, pendingAcquireTimeout=45000}] for [management.azure.com/<unresolved>:443]
[DEBUG] Default io_uring support : false
[DEBUG] Default Epoll support : false
[DEBUG] Default KQueue support : false
[DEBUG] -Dio.netty.eventLoopThreads: 24
[DEBUG] -Dio.netty.globalEventExecutor.quietPeriodSeconds: 1
[DEBUG] -Dio.netty.noKeySetOptimization: false
[DEBUG] -Dio.netty.selectorAutoRebuildThreshold: 512
[DEBUG] -Dio.netty.processId: 61111 (auto-detected)
[DEBUG] -Dio.netty.machineId: 00:e0:4c:ff:fe:31:9e:ab (auto-detected)
[DEBUG] [13709533] Created a new pooled channel, now: 0 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@646dc8e4
[DEBUG] [13709533] SSL enabled using engine io.netty.handler.ssl.OpenSslEngine@6545b84f and SNI management.azure.com/<unresolved>:443
[DEBUG] [13709533] Initialized pipeline DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.sslReader = reactor.netty.tcp.SslProvider$SslReadHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533] Connecting to [management.azure.com/4.150.241.10:443].
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Registering pool release on close event for channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel connected, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] HANDSHAKEN: protocol:TLSv1.3 cipher suite:TLS_AES_256_GCM_SHA384
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}, [connected])
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=null, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [configured])
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com//providers/Microsoft.Web/functionAppStacks?api-version=2023-01-01, method=GET}
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@35493a12
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-tenant-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=2, error=null]: subscribing inbound receiver
[DEBUG] [13709533-1, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})->loadResourceFromAzure()
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})->addResourceToLocal(** redacted **, resource)
[DEBUG] [Microsoft.Web]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/${rg}/providers/Microsoft.Web, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [Microsoft.Web]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [Microsoft.Web:** redacted **]:setRemote(com.azure.resourcemanager.appservice.AppServiceManager@685eaf12)
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->subModules.invalidateCache()
[DEBUG] [serverfarms]:invalidateCache()
[DEBUG] [serverfarms]:invalidateCache->resources.invalidateCache()
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->this.remoteRef.set(com.azure.resourcemanager.appservice.AppServiceManager@685eaf12)
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->setStatus(LOADING)
[DEBUG] [Microsoft.Web:** redacted **]:setRemote->this.loadStatus
[DEBUG] [Microsoft.Web:** redacted **]:setStatus(OK)
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/providers/Microsoft.Web/geoRegions?sku=FlexConsumption&linuxWorkersEnabled=false&xenonWorkersEnabled=false&linuxDynamicWorkersEnabled=false&api-version=2023-01-01, method=GET}
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Web/geoRegions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Web/geoRegions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [** redacted **]:fireStatusChangedEvent()
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Web/geoRegions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [13709533-2, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Web/geoRegions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Web/geoRegions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-3, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com//providers/Microsoft.Web/locations/swedencentral/functionAppStacks?api-version=2020-10-01&stack=java, method=GET}
[DEBUG] [13709533-3, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/locations/swedencentral/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-3, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [13709533-3, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/locations/swedencentral/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [13709533-3, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-tenant-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-3, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/locations/swedencentral/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-3, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/locations/swedencentral/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=//providers/Microsoft.Web/locations/swedencentral/functionAppStacks, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=true, cancelled=false, pending=1, error=null]: subscribing inbound receiver
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [sites]:updateOrCreate(func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)
[DEBUG] [sites]:get(func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)
[DEBUG] [sites]:get(func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)->loadResourceFromAzure()
[DEBUG] [sites]:loadResourceFromAzure(func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [sites]:loadResourceFromAzure->client.getById(rg-flexconsumption, func-api-4frwx3l2fnxrg-functions)
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions?api-version=2023-01-01, method=GET}
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
ETag: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [13709533-4, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/web?api-version=2023-01-01, method=GET}
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/web, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [d2d825b4] Created a new pooled channel, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/web, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [d2d825b4] SSL enabled using engine io.netty.handler.ssl.OpenSslEngine@4f658c64 and SNI management.azure.com/<unresolved>:443
[DEBUG] [d2d825b4] Initialized pipeline DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.sslReader = reactor.netty.tcp.SslProvider$SslReadHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4] Connecting to [management.azure.com/4.150.241.10:443].
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Registering pool release on close event for channel
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel connected, now: 2 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] HANDSHAKEN: protocol:TLSv1.3 cipher suite:TLS_AES_256_GCM_SHA384
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}, [connected])
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=null, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [configured])
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/logs?api-version=2023-01-01, method=GET}
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/logs, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/logs, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/web, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [13709533-5, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/web, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/web, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 1 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/logs, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [d2d825b4-1, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/logs, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/logs, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 2 inactive connections and 0 pending acquire requests.
[DEBUG] [sites]:get(func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)->addResourceToLocal(func-api-4frwx3l2fnxrg-functions, resource)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:setRemote(52f1166d-d600-407a-95a9-9aff9c1c678e)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:setRemote->subModules.invalidateCache()
[DEBUG] [sites]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, AbstractAzResource(name=func-api-4frwx3l2fnxrg-functions, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [sites]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/sites/func-api-4frwx3l2fnxrg-functions, AbstractAzResource(name=func-api-4frwx3l2fnxrg-functions, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [slots]:invalidateCache()
[DEBUG] [slots]:invalidateCache->resources.invalidateCache()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:setRemote->this.remoteRef.set(52f1166d-d600-407a-95a9-9aff9c1c678e)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:setRemote->setStatus(LOADING)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:setRemote->this.loadStatus
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})->loadResourceFromAzure()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})->addResourceToLocal(** redacted **, resource)
[DEBUG] [Microsoft.Resources:** redacted **]:setRemote(com.azure.resourcemanager.resources.ResourceManager@e384b94)
[DEBUG] [Microsoft.Resources:** redacted **]:setRemote->subModules.invalidateCache()
[DEBUG] [resourceGroups]:invalidateCache()
[DEBUG] [Microsoft.Resources]:addResourceToLocal(/subscriptions/** redacted **, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [Microsoft.Resources]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:invalidateCache->resources.invalidateCache()
[DEBUG] [Microsoft.Resources:** redacted **]:setRemote->this.remoteRef.set(com.azure.resourcemanager.resources.ResourceManager@e384b94)
[DEBUG] [Microsoft.Resources:** redacted **]:setRemote->setStatus(LOADING)
[DEBUG] [Microsoft.Resources:** redacted **]:setRemote->this.loadStatus
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)->loadResourceFromAzure()
[DEBUG] [resourceGroups]:loadResourceFromAzure(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [Microsoft.Resources:** redacted **]:getRemote()
[DEBUG] [Microsoft.Resources:** redacted **]:setStatus(OK)
[DEBUG] [resourceGroups]:loadResourceFromAzure->client.getByName(rg-flexconsumption)
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/appsettings/list?api-version=2023-01-01, method=POST}
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/appsettings/list, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 2 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourcegroups/rg-flexconsumption?api-version=2024-03-01, method=GET}
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [ced39909] Created a new pooled channel, now: 2 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [ced39909] SSL enabled using engine io.netty.handler.ssl.OpenSslEngine@f0084a8 and SNI management.azure.com/<unresolved>:443
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/appsettings/list, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [ced39909] Initialized pipeline DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.sslReader = reactor.netty.tcp.SslProvider$SslReadHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [ced39909] Connecting to [management.azure.com/4.150.241.10:443].
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Registering pool release on close event for channel
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Channel connected, now: 3 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] HANDSHAKEN: protocol:TLSv1.3 cipher suite:TLS_AES_256_GCM_SHA384
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}, [connected])
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=null, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [configured])
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/slotConfigNames?api-version=2023-01-01, method=GET}
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/slotConfigNames, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/slotConfigNames, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-request-id: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
Strict-Transport-Security: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [d2d825b4-2, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 2 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)->addResourceToLocal(rg-flexconsumption, resource)
[DEBUG] [resourceGroups:rg-flexconsumption]:setRemote(72014daf-b081-4ab5-b620-0204714fbf4b)
[DEBUG] [resourceGroups:rg-flexconsumption]:setRemote->subModules.invalidateCache()
[DEBUG] [resourceGroups]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption, AbstractAzResource(name=rg-flexconsumption, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [resourceGroups]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, AbstractAzResource(name=rg-flexconsumption, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [deployments]:invalidateCache()
[DEBUG] [deployments]:invalidateCache->resources.invalidateCache()
[DEBUG] [genericResources]:invalidateCache()
[DEBUG] [genericResources]:invalidateCache->resources.invalidateCache()
[DEBUG] [resourceGroups:rg-flexconsumption]:setRemote->this.remoteRef.set(72014daf-b081-4ab5-b620-0204714fbf4b)
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [resourceGroups:rg-flexconsumption]:setRemote->setStatus(LOADING)
[DEBUG] [resourceGroups:rg-flexconsumption]:setRemote->this.loadStatus
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:setStatus(Succeeded)
[DEBUG] [genericResources]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [genericResources]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/sites/func-api-4frwx3l2fnxrg-functions, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [genericResources]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [sites]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/sites/func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)->this.resources.get(func-api-4frwx3l2fnxrg-functions)
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)->loadResourceFromAzure()
[DEBUG] [serverfarms]:loadResourceFromAzure(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [serverfarms]:loadResourceFromAzure->client.getById(rg-flexconsumption, plan-4frwx3l2fnxrg)
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 3 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg?api-version=2023-01-01, method=GET}
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [d2d825b4-3, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 2 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)->addResourceToLocal(plan-4frwx3l2fnxrg, resource)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:setRemote(1ed7d4ee-af1a-4e38-b0d0-b06e4f1dde78)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:setRemote->subModules.invalidateCache()
[DEBUG] [serverfarms]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, AbstractAzResource(name=plan-4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:setRemote->this.remoteRef.set(1ed7d4ee-af1a-4e38-b0d0-b06e4f1dde78)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:setRemote->setStatus(LOADING)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:setRemote->this.loadStatus
[DEBUG] [serverfarms]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, AbstractAzResource(name=plan-4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [genericResources]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [genericResources]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [genericResources]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:setStatus(Succeeded)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 3 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [d2d825b4-4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions?api-version=2023-12-01, method=GET}
[DEBUG] [d2d825b4-4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [d2d825b4-4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [d2d825b4-4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [** redacted **]:fireStatusChangedEvent()
[DEBUG] [func-api-4frwx3l2fnxrg-functions]:fireStatusChangedEvent()
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/slotConfigNames, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [ced39909-1, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/slotConfigNames, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/slotConfigNames, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 2 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-resource-requests: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/appsettings/list, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [13709533-6, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/appsettings/list, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions/config/appsettings/list, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 1 active connections, 2 inactive connections and 0 pending acquire requests.
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:setStatus(Running)
[DEBUG] [rg-flexconsumption]:fireStatusChangedEvent()
[DEBUG] [plan-4frwx3l2fnxrg]:fireStatusChangedEvent()
[DEBUG] [func-api-4frwx3l2fnxrg-functions]:fireStatusChangedEvent()
[DEBUG] [d2d825b4-4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
ETag: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [d2d825b4-4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [d2d825b4-4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 3 inactive connections and 0 pending acquire requests.
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] [terminated=true, cancelled=false, pending=2, error=null]: subscribing inbound receiver
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 2 inactive connections and 0 pending acquire requests.
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions?api-version=2023-12-01, method=GET}
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
ETag: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=1, error=null]: subscribing inbound receiver
[DEBUG] [ced39909-2, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 3 inactive connections and 0 pending acquire requests.
[DEBUG] [Microsoft.Storage]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Storage]:get(** redacted **, ${rg})->loadResourceFromAzure()
[DEBUG] [Microsoft.Storage]:get(** redacted **, ${rg})->addResourceToLocal(** redacted **, resource)
[DEBUG] [Microsoft.Storage:** redacted **]:setRemote(com.azure.resourcemanager.storage.StorageManager@4bf1d159)
[DEBUG] [Microsoft.Storage:** redacted **]:setRemote->subModules.invalidateCache()
[DEBUG] [Microsoft.Storage]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/${rg}/providers/Microsoft.Storage, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [Microsoft.Storage]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.storage, AbstractAzResource(name=** redacted **, resourceGroupName=${rg}, status=Unknown))
[DEBUG] [storageAccounts]:invalidateCache()
[DEBUG] [Microsoft.Storage]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.storage, ${rg})->this.resources.get(** redacted **)
[DEBUG] [storageAccounts]:invalidateCache->resources.invalidateCache()
[DEBUG] [Microsoft.Storage:** redacted **]:getRemote()
[DEBUG] [Microsoft.Storage:** redacted **]:setRemote->this.remoteRef.set(com.azure.resourcemanager.storage.StorageManager@4bf1d159)
[DEBUG] [Microsoft.Storage:** redacted **]:setRemote->setStatus(LOADING)
[DEBUG] [Microsoft.Storage:** redacted **]:setRemote->this.loadStatus
[DEBUG] [Microsoft.Storage:** redacted **]:setStatus(OK)
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 2 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/providers/Microsoft.Storage/storageAccounts?api-version=2023-05-01, method=GET}
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Storage/storageAccounts, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Storage/storageAccounts, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [** redacted **]:fireStatusChangedEvent()
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
x-ms-original-request-ids: <filtered>
x-ms-original-request-ids: <filtered>
x-ms-original-request-ids: <filtered>
x-ms-original-request-ids: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-request-id: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
Strict-Transport-Security: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Storage/storageAccounts, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [13709533-7, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Storage/storageAccounts, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/providers/Microsoft.Storage/storageAccounts, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 3 inactive connections and 0 pending acquire requests.
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [sites]:updateOrCreate(func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)
[DEBUG] [sites]:get(func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)
[DEBUG] [sites]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/sites/func-api-4frwx3l2fnxrg-functions, rg-flexconsumption)->this.resources.get(func-api-4frwx3l2fnxrg-functions)
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:getOrDraft(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:getOrDraft(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [serverfarms]:updateOrCreate(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms]:exists(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(plan-4frwx3l2fnxrg)
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [serverfarms]:update(draft:AbstractAzResource(name=plan-4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Succeeded))
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [serverfarms]:update->doModify(draft.updateResourceInAzure(1ed7d4ee-af1a-4e38-b0d0-b06e4f1dde78))
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [Microsoft.Storage]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Storage]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.storage, ${rg})->this.resources.get(** redacted **)
[DEBUG] [storageAccounts]:get(st4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [storageAccounts]:get(st4frwx3l2fnxrg, rg-flexconsumption)->loadResourceFromAzure()
[DEBUG] [storageAccounts]:loadResourceFromAzure(st4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [Microsoft.Storage:** redacted **]:getRemote()
[DEBUG] [storageAccounts]:loadResourceFromAzure->client.getById(rg-flexconsumption, st4frwx3l2fnxrg)
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 2 inactive connections and 0 pending acquire requests.
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg?api-version=2023-05-01, method=GET}
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
x-ms-client-request-id: <filtered>
x-ms-request-id: <filtered>
Strict-Transport-Security: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [d2d825b4-5, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, connection=PooledConnection{channel=[id: 0xd2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [d2d825b4, L:/192.168.196.144:61232 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 3 inactive connections and 0 pending acquire requests.
[DEBUG] [storageAccounts]:get(st4frwx3l2fnxrg, rg-flexconsumption)->addResourceToLocal(st4frwx3l2fnxrg, resource)
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:setRemote(666cebe2-5046-4f8f-9a7b-9f5d431eb75f)
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:setRemote->subModules.invalidateCache()
[DEBUG] [storageAccounts]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, AbstractAzResource(name=st4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [storageAccounts]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.storage/storageaccounts/st4frwx3l2fnxrg, AbstractAzResource(name=st4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:setRemote->this.remoteRef.set(666cebe2-5046-4f8f-9a7b-9f5d431eb75f)
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:setRemote->setStatus(LOADING)
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:setRemote->this.loadStatus
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:setStatus(Succeeded)
[DEBUG] [genericResources]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Succeeded))
[DEBUG] [genericResources]:addResourceToLocal->this.resources.put(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.storage/storageaccounts/st4frwx3l2fnxrg, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Succeeded))
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [genericResources]:addResourceToLocal(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, AbstractAzResource(name=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg, resourceGroupName=rg-flexconsumption, status=Unknown))
[DEBUG] [storageAccounts]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.storage/storageaccounts/st4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(st4frwx3l2fnxrg)
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Storage:** redacted **]:getRemote()
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:getRemote()
[DEBUG] [Azure.BlobContainer]:getOrDraft(deploymentpackage, rg-flexconsumption)
[DEBUG] [Azure.BlobContainer]:get(deploymentpackage, rg-flexconsumption)
[DEBUG] [Azure.BlobContainer]:get(deploymentpackage, rg-flexconsumption)->loadResourceFromAzure()
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Storage:** redacted **]:getRemote()
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:getRemote()
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Storage:** redacted **]:getRemote()
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:getRemote()
[DEBUG] [storageAccounts:st4frwx3l2fnxrg]:getRemote()
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 2 inactive connections and 0 pending acquire requests.
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg/listKeys?api-version=2023-05-01, method=POST}
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg/listKeys, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg/listKeys, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [plan-4frwx3l2fnxrg]:fireStatusChangedEvent()
[DEBUG] [st4frwx3l2fnxrg]:fireStatusChangedEvent()
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
x-ms-client-request-id: <filtered>
x-ms-request-id: <filtered>
Strict-Transport-Security: <filtered>
x-ms-ratelimit-remaining-subscription-resource-requests: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg/listKeys, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [ced39909-3, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg/listKeys, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] onStateChange(POST{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Storage/storageAccounts/st4frwx3l2fnxrg/listKeys, connection=PooledConnection{channel=[id: 0xced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [ced39909, L:/192.168.196.144:61233 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 3 inactive connections and 0 pending acquire requests.
[DEBUG] Creating a new [http] client pool [PoolFactory{evictionInterval=PT0S, leasingStrategy=fifo, maxConnections=500, maxIdleTime=-1, maxLifeTime=-1, metricsEnabled=false, pendingAcquireMaxCount=1000, pendingAcquireTimeout=45000}] for [st4frwx3l2fnxrg.blob.core.windows.net/<unresolved>:443]
[DEBUG] [8180af18] Created a new pooled channel, now: 0 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [8180af18] SSL enabled using engine io.netty.handler.ssl.OpenSslEngine@331747a9 and SNI st4frwx3l2fnxrg.blob.core.windows.net/<unresolved>:443
[DEBUG] [8180af18] Initialized pipeline DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.sslReader = reactor.netty.tcp.SslProvider$SslReadHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [8180af18] Connecting to [st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443].
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Registering pool release on close event for channel
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Channel connected, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
[DEBUG] [id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] HANDSHAKEN: protocol:TLSv1.3 cipher suite:TLS_AES_256_GCM_SHA384
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] onStateChange(PooledConnection{channel=[id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443]}, [connected])
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] onStateChange(GET{uri=null, connection=PooledConnection{channel=[id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443]}}, [configured])
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Handler is being applied: {uri=https://st4frwx3l2fnxrg.blob.core.windows.net/?comp=list, method=GET}
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443]}}, [request_prepared])
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443]}}, [request_sent])
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 403 Key based authentication is not permitted on this storage account.
Content-Length: <filtered>
Content-Type: <filtered>
Server: <filtered>
x-ms-request-id: <filtered>
x-ms-error-code: <filtered>
Date: <filtered>
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443]}}, [response_received])
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] [terminated=false, cancelled=false, pending=0, error=null]: subscribing inbound receiver
[DEBUG] [8180af18-1, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Received last HTTP packet
[DEBUG] [Azure.BlobContainer]:get(deploymentpackage, rg-flexconsumption)->loadResourceFromAzure()=EXCEPTION
com.azure.storage.blob.models.BlobStorageException: If you are using a StorageSharedKeyCredential, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate method call.
If you are using a SAS token, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate generateSas method call.
Please remember to disable 'Azure-Storage-Log-String-To-Sign' before going to production as this string can potentially contain PII.
Status code 403, "<?xml version="1.0" encoding="utf-8"?><Error><Code>KeyBasedAuthenticationNotPermitted</Code><Message>Key based authentication is not permitted on this storage account.
RequestId:c534930e-b01e-005d-27b7-7706e5000000
Time:2025-02-05T10:21:19.9756747Z</Message></Error>"
    at java.lang.invoke.MethodHandle.invokeWithArguments (MethodHandle.java:732)
    at com.azure.core.implementation.MethodHandleReflectiveInvoker.invokeStatic (MethodHandleReflectiveInvoker.java:26)
    at com.azure.core.implementation.http.rest.ResponseExceptionConstructorCache.invoke (ResponseExceptionConstructorCache.java:53)
    at com.azure.core.implementation.http.rest.RestProxyBase.instantiateUnexpectedException (RestProxyBase.java:407)
    at com.azure.core.implementation.http.rest.AsyncRestProxy.lambda$ensureExpectedStatus$1 (AsyncRestProxy.java:135)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:113)
    at reactor.core.publisher.Operators$ScalarSubscription.request (Operators.java:2571)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.request (FluxMapFuseable.java:171)
    at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.set (Operators.java:2367)
    at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.onSubscribe (Operators.java:2241)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onSubscribe (FluxMapFuseable.java:96)
    at reactor.core.publisher.MonoJust.subscribe (MonoJust.java:55)
    at reactor.core.publisher.InternalMonoOperator.subscribe (InternalMonoOperator.java:76)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:165)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxHide$SuppressFuseableSubscriber.onNext (FluxHide.java:137)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxHide$SuppressFuseableSubscriber.onNext (FluxHide.java:137)
    at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext (FluxOnErrorResume.java:79)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext (FluxOnErrorResume.java:79)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.Operators$MonoInnerProducerBase.complete (Operators.java:2842)
    at reactor.core.publisher.MonoSingle$SingleSubscriber.onComplete (MonoSingle.java:180)
    at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete (MonoFlatMapMany.java:261)
    at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onComplete (FluxContextWrite.java:126)
    at reactor.core.publisher.MonoUsing$MonoUsingSubscriber.onNext (MonoUsing.java:232)
    at reactor.core.publisher.FluxMap$MapSubscriber.onNext (FluxMap.java:122)
    at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onNext (FluxSwitchIfEmpty.java:74)
    at reactor.core.publisher.FluxHandle$HandleSubscriber.onNext (FluxHandle.java:129)
    at reactor.core.publisher.FluxMap$MapConditionalSubscriber.onNext (FluxMap.java:224)
    at reactor.core.publisher.FluxDoFinally$DoFinallySubscriber.onNext (FluxDoFinally.java:113)
    at reactor.core.publisher.FluxHandleFuseable$HandleFuseableSubscriber.onNext (FluxHandleFuseable.java:194)
    at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext (FluxContextWrite.java:107)
    at reactor.core.publisher.Operators$BaseFluxToMonoOperator.completePossiblyEmpty (Operators.java:2097)
    at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete (MonoCollectList.java:118)
    at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete (FluxPeek.java:260)
    at reactor.core.publisher.FluxMap$MapSubscriber.onComplete (FluxMap.java:144)
    at reactor.netty.channel.FluxReceive.onInboundComplete (FluxReceive.java:415)
    at reactor.netty.channel.ChannelOperations.onInboundComplete (ChannelOperations.java:446)
    at reactor.netty.channel.ChannelOperations.terminate (ChannelOperations.java:500)
    at reactor.netty.http.client.HttpClientOperations.onInboundNext (HttpClientOperations.java:768)
    at reactor.netty.channel.ChannelOperationsHandler.channelRead (ChannelOperationsHandler.java:114)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at com.azure.core.http.netty.implementation.AzureSdkHandler.channelRead (AzureSdkHandler.java:224)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:442)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead (CombinedChannelDuplexHandler.java:436)
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead (ByteToMessageDecoder.java:346)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:318)
    at io.netty.channel.CombinedChannelDuplexHandler.channelRead (CombinedChannelDuplexHandler.java:251)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:442)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.handler.ssl.SslHandler.unwrap (SslHandler.java:1475)
    at io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible (SslHandler.java:1349)
    at io.netty.handler.ssl.SslHandler.decode (SslHandler.java:1389)
    at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection (ByteToMessageDecoder.java:529)
    at io.netty.handler.codec.ByteToMessageDecoder.callDecode (ByteToMessageDecoder.java:468)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:290)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead (DefaultChannelPipeline.java:1410)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:440)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.DefaultChannelPipeline.fireChannelRead (DefaultChannelPipeline.java:919)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read (AbstractNioByteChannel.java:166)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey (NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized (NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys (NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run (NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run (SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run (ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run (FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run (Thread.java:840)
    Suppressed: java.lang.Exception: #block terminated with an error
        at reactor.core.publisher.BlockingSingleSubscriber.blockingGet (BlockingSingleSubscriber.java:104)
        at reactor.core.publisher.Flux.blockLast (Flux.java:2817)
        at com.azure.core.util.paging.ContinuablePagedByIteratorBase.requestPage (ContinuablePagedByIteratorBase.java:102)
        at com.azure.core.util.paging.ContinuablePagedByItemIterable$ContinuablePagedByItemIterator.<init> (ContinuablePagedByItemIterable.java:75)
        at com.azure.core.util.paging.ContinuablePagedByItemIterable.iterator (ContinuablePagedByItemIterable.java:55)
        at java.lang.Iterable.spliterator (Iterable.java:101)
        at com.azure.core.util.paging.ContinuablePagedIterable.stream (ContinuablePagedIterable.java:85)
        at com.microsoft.azure.toolkit.lib.storage.blob.BlobContainerModule.loadResourceFromAzure (BlobContainerModule.java:68)
        at com.microsoft.azure.toolkit.lib.storage.blob.BlobContainerModule.loadResourceFromAzure (BlobContainerModule.java:25)
        at com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule.get (AbstractAzResourceModule.java:286)
        at com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule.getOrDraft (AbstractAzResourceModule.java:343)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.lambda$getDeploymentStorageContainer$10 (CreateOrUpdateFunctionAppTask.java:160)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.lambda$registerSubTask$18 (CreateOrUpdateFunctionAppTask.java:279)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.doExecute (CreateOrUpdateFunctionAppTask.java:489)
        at com.microsoft.azure.maven.function.DeployMojo.createOrUpdateResource (DeployMojo.java:419)
        at com.microsoft.azure.maven.function.DeployMojo.doExecute (DeployMojo.java:243)
        at com.microsoft.azure.maven.AbstractAzureMojo.execute (AbstractAzureMojo.java:328)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
        at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
        at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
        at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
        at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
        at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
        at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
        at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
        at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
        at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke (Method.java:569)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443]}}, [response_completed])
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443]}}, [disconnecting])
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Releasing channel
[DEBUG] [8180af18, L:/192.168.196.144:61234 - R:st4frwx3l2fnxrg.blob.core.windows.net/20.150.44.4:443] Channel cleaned, now: 0 active connections, 1 inactive connections and 0 pending acquire requests.
[DEBUG] [Azure.BlobContainer]:get(deploymentpackage, rg-flexconsumption)->loadResourceFromAzure()=SC_NOT_FOUND
com.azure.storage.blob.models.BlobStorageException: If you are using a StorageSharedKeyCredential, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate method call.
If you are using a SAS token, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate generateSas method call.
Please remember to disable 'Azure-Storage-Log-String-To-Sign' before going to production as this string can potentially contain PII.
Status code 403, "<?xml version="1.0" encoding="utf-8"?><Error><Code>KeyBasedAuthenticationNotPermitted</Code><Message>Key based authentication is not permitted on this storage account.
RequestId:c534930e-b01e-005d-27b7-7706e5000000
Time:2025-02-05T10:21:19.9756747Z</Message></Error>"
    at java.lang.invoke.MethodHandle.invokeWithArguments (MethodHandle.java:732)
    at com.azure.core.implementation.MethodHandleReflectiveInvoker.invokeStatic (MethodHandleReflectiveInvoker.java:26)
    at com.azure.core.implementation.http.rest.ResponseExceptionConstructorCache.invoke (ResponseExceptionConstructorCache.java:53)
    at com.azure.core.implementation.http.rest.RestProxyBase.instantiateUnexpectedException (RestProxyBase.java:407)
    at com.azure.core.implementation.http.rest.AsyncRestProxy.lambda$ensureExpectedStatus$1 (AsyncRestProxy.java:135)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:113)
    at reactor.core.publisher.Operators$ScalarSubscription.request (Operators.java:2571)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.request (FluxMapFuseable.java:171)
    at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.set (Operators.java:2367)
    at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.onSubscribe (Operators.java:2241)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onSubscribe (FluxMapFuseable.java:96)
    at reactor.core.publisher.MonoJust.subscribe (MonoJust.java:55)
    at reactor.core.publisher.InternalMonoOperator.subscribe (InternalMonoOperator.java:76)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:165)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxHide$SuppressFuseableSubscriber.onNext (FluxHide.java:137)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxHide$SuppressFuseableSubscriber.onNext (FluxHide.java:137)
    at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext (FluxOnErrorResume.java:79)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext (FluxOnErrorResume.java:79)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.Operators$MonoInnerProducerBase.complete (Operators.java:2842)
    at reactor.core.publisher.MonoSingle$SingleSubscriber.onComplete (MonoSingle.java:180)
    at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete (MonoFlatMapMany.java:261)
    at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onComplete (FluxContextWrite.java:126)
    at reactor.core.publisher.MonoUsing$MonoUsingSubscriber.onNext (MonoUsing.java:232)
    at reactor.core.publisher.FluxMap$MapSubscriber.onNext (FluxMap.java:122)
    at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onNext (FluxSwitchIfEmpty.java:74)
    at reactor.core.publisher.FluxHandle$HandleSubscriber.onNext (FluxHandle.java:129)
    at reactor.core.publisher.FluxMap$MapConditionalSubscriber.onNext (FluxMap.java:224)
    at reactor.core.publisher.FluxDoFinally$DoFinallySubscriber.onNext (FluxDoFinally.java:113)
    at reactor.core.publisher.FluxHandleFuseable$HandleFuseableSubscriber.onNext (FluxHandleFuseable.java:194)
    at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext (FluxContextWrite.java:107)
    at reactor.core.publisher.Operators$BaseFluxToMonoOperator.completePossiblyEmpty (Operators.java:2097)
    at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete (MonoCollectList.java:118)
    at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete (FluxPeek.java:260)
    at reactor.core.publisher.FluxMap$MapSubscriber.onComplete (FluxMap.java:144)
    at reactor.netty.channel.FluxReceive.onInboundComplete (FluxReceive.java:415)
    at reactor.netty.channel.ChannelOperations.onInboundComplete (ChannelOperations.java:446)
    at reactor.netty.channel.ChannelOperations.terminate (ChannelOperations.java:500)
    at reactor.netty.http.client.HttpClientOperations.onInboundNext (HttpClientOperations.java:768)
    at reactor.netty.channel.ChannelOperationsHandler.channelRead (ChannelOperationsHandler.java:114)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at com.azure.core.http.netty.implementation.AzureSdkHandler.channelRead (AzureSdkHandler.java:224)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:442)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead (CombinedChannelDuplexHandler.java:436)
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead (ByteToMessageDecoder.java:346)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:318)
    at io.netty.channel.CombinedChannelDuplexHandler.channelRead (CombinedChannelDuplexHandler.java:251)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:442)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.handler.ssl.SslHandler.unwrap (SslHandler.java:1475)
    at io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible (SslHandler.java:1349)
    at io.netty.handler.ssl.SslHandler.decode (SslHandler.java:1389)
    at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection (ByteToMessageDecoder.java:529)
    at io.netty.handler.codec.ByteToMessageDecoder.callDecode (ByteToMessageDecoder.java:468)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:290)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead (DefaultChannelPipeline.java:1410)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:440)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.DefaultChannelPipeline.fireChannelRead (DefaultChannelPipeline.java:919)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read (AbstractNioByteChannel.java:166)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey (NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized (NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys (NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run (NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run (SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run (ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run (FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run (Thread.java:840)
    Suppressed: java.lang.Exception: #block terminated with an error
        at reactor.core.publisher.BlockingSingleSubscriber.blockingGet (BlockingSingleSubscriber.java:104)
        at reactor.core.publisher.Flux.blockLast (Flux.java:2817)
        at com.azure.core.util.paging.ContinuablePagedByIteratorBase.requestPage (ContinuablePagedByIteratorBase.java:102)
        at com.azure.core.util.paging.ContinuablePagedByItemIterable$ContinuablePagedByItemIterator.<init> (ContinuablePagedByItemIterable.java:75)
        at com.azure.core.util.paging.ContinuablePagedByItemIterable.iterator (ContinuablePagedByItemIterable.java:55)
        at java.lang.Iterable.spliterator (Iterable.java:101)
        at com.azure.core.util.paging.ContinuablePagedIterable.stream (ContinuablePagedIterable.java:85)
        at com.microsoft.azure.toolkit.lib.storage.blob.BlobContainerModule.loadResourceFromAzure (BlobContainerModule.java:68)
        at com.microsoft.azure.toolkit.lib.storage.blob.BlobContainerModule.loadResourceFromAzure (BlobContainerModule.java:25)
        at com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule.get (AbstractAzResourceModule.java:286)
        at com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule.getOrDraft (AbstractAzResourceModule.java:343)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.lambda$getDeploymentStorageContainer$10 (CreateOrUpdateFunctionAppTask.java:160)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.lambda$registerSubTask$18 (CreateOrUpdateFunctionAppTask.java:279)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.doExecute (CreateOrUpdateFunctionAppTask.java:489)
        at com.microsoft.azure.maven.function.DeployMojo.createOrUpdateResource (DeployMojo.java:419)
        at com.microsoft.azure.maven.function.DeployMojo.doExecute (DeployMojo.java:243)
        at com.microsoft.azure.maven.AbstractAzureMojo.execute (AbstractAzureMojo.java:328)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
        at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
        at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
        at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
        at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
        at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
        at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
        at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
        at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
        at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke (Method.java:569)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
[DEBUG] [Microsoft.Resources]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Resources]:get(/subscriptions/** redacted **, ${rg})->this.resources.get(** redacted **)
[DEBUG] [resourceGroups]:get(rg-flexconsumption, rg-flexconsumption)
[DEBUG] [resourceGroups]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption, rg-flexconsumption)->this.resources.get(rg-flexconsumption)
[DEBUG] [resourceGroups:rg-flexconsumption]:getRemote()
[DEBUG] [Microsoft.Web:** redacted **]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [Microsoft.Web]:get(** redacted **, ${rg})
[DEBUG] [Microsoft.Web]:get(/subscriptions/** redacted **/resourcegroups/${rg}/providers/microsoft.web, ${rg})->this.resources.get(** redacted **)
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/serverfarms/plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms]:get(plan-4frwx3l2fnxrg, rg-flexconsumption)
[DEBUG] [serverfarms]:get(/subscriptions/** redacted **/resourcegroups/rg-flexconsumption/providers/microsoft.web/serverfarms/plan-4frwx3l2fnxrg, rg-flexconsumption)->this.resources.get(plan-4frwx3l2fnxrg)
[DEBUG] [serverfarms:plan-4frwx3l2fnxrg]:getRemote()
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel acquired, now: 1 active connections, 2 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533-8, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Handler is being applied: {uri=https://management.azure.com/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions?api-version=2023-12-01, method=GET}
[DEBUG] [13709533-8, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_prepared])
[DEBUG] [13709533-8, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Added decoder [azureSdkHandler] at the end of the user pipeline, full pipeline: [reactor.left.sslHandler, reactor.left.httpCodec, azureSdkHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0]
[DEBUG] [13709533-8, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [request_sent])
[DEBUG] [13709533-8, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received response (auto-read:false) : RESPONSE(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Cache-Control: <filtered>
Pragma: <filtered>
Content-Length: <filtered>
Content-Type: <filtered>
Expires: <filtered>
ETag: <filtered>
Strict-Transport-Security: <filtered>
x-ms-request-id: <filtered>
X-AspNet-Version: <filtered>
X-Powered-By: <filtered>
x-ms-ratelimit-remaining-subscription-reads: <filtered>
x-ms-ratelimit-remaining-subscription-global-reads: <filtered>
x-ms-correlation-request-id: <filtered>
x-ms-routing-request-id: <filtered>
X-Content-Type-Options: <filtered>
X-Cache: <filtered>
X-MSEdge-Ref: <filtered>
Date: <filtered>
[DEBUG] [13709533-8, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_received])
[DEBUG] [13709533-8, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Received last HTTP packet
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [response_completed])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Removed handler: azureSdkHandler, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Non Removed handler: azureSdkHandler, context: null, pipeline: DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] onStateChange(GET{uri=/subscriptions/** redacted **/resourceGroups/rg-flexconsumption/providers/Microsoft.Web/sites/func-api-4frwx3l2fnxrg-functions, connection=PooledConnection{channel=[id: 0x13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443]}}, [disconnecting])
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Releasing channel
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] Channel cleaned, now: 0 active connections, 3 inactive connections and 0 pending acquire requests.
[DEBUG] [13709533, L:/192.168.196.144:61230 - R:management.azure.com/4.150.241.10:443] [terminated=true, cancelled=false, pending=2, error=null]: subscribing inbound receiver
[DEBUG] [sites:func-api-4frwx3l2fnxrg-functions]:getRemote()
[DEBUG] orphan context[{id: 2ff9a06, threadId:1, parent:/}] is disposed
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  15.549 s
[INFO] Finished at: 2025-02-05T11:21:22+01:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy (default-cli) on project contoso-functions: deploy to Function App with resource creation or updating: AzureToolkitRuntimeException: If you are using a StorageSharedKeyCredential, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate method call.
[ERROR] If you are using a SAS token, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate generateSas method call.
[ERROR] Please remember to disable 'Azure-Storage-Log-String-To-Sign' before going to production as this string can potentially contain PII.
[ERROR] Status code 403, "<?xml version="1.0" encoding="utf-8"?><Error><Code>KeyBasedAuthenticationNotPermitted</Code><Message>Key based authentication is not permitted on this storage account.
[ERROR] RequestId:c534930e-b01e-005d-27b7-7706e5000000
[ERROR] Time:2025-02-05T10:21:19.9756747Z</Message></Error>"
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.microsoft.azure:azure-functions-maven-plugin:1.37.0:deploy (default-cli) on project contoso-functions: deploy to Function App with resource creation or updating
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:333)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:569)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.apache.maven.plugin.MojoExecutionException: deploy to Function App with resource creation or updating
    at com.microsoft.azure.maven.AbstractAzureMojo.onMojoError (AbstractAzureMojo.java:559)
    at com.microsoft.azure.maven.AbstractAzureMojo.execute (AbstractAzureMojo.java:332)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:569)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: com.microsoft.azure.toolkit.lib.common.operation.OperationException: deploy to Function App with resource creation or updating
    at com.microsoft.azure.toolkit.lib.common.operation.AzureOperationAspect.afterThrowing (AzureOperationAspect.java:93)
    at com.microsoft.azure.toolkit.lib.common.operation.AzureOperationAspect.afterThrowing (AzureOperationAspect.java:43)
    at com.microsoft.azure.maven.function.DeployMojo.doExecute (DeployMojo.java:252)
    at com.microsoft.azure.maven.AbstractAzureMojo.execute (AbstractAzureMojo.java:328)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:569)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: com.microsoft.azure.toolkit.lib.common.exception.AzureToolkitRuntimeException
    at com.microsoft.azure.maven.function.DeployMojo.doExecute (DeployMojo.java:249)
    at com.microsoft.azure.maven.AbstractAzureMojo.execute (AbstractAzureMojo.java:328)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:569)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: com.azure.storage.blob.models.BlobStorageException: If you are using a StorageSharedKeyCredential, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate method call.
If you are using a SAS token, and the server returned an error message that says 'Signature did not match', you can compare the string to sign with the one generated by the SDK. To log the string to sign, pass in the context key value pair 'Azure-Storage-Log-String-To-Sign': true to the appropriate generateSas method call.
Please remember to disable 'Azure-Storage-Log-String-To-Sign' before going to production as this string can potentially contain PII.
Status code 403, "<?xml version="1.0" encoding="utf-8"?><Error><Code>KeyBasedAuthenticationNotPermitted</Code><Message>Key based authentication is not permitted on this storage account.
RequestId:c534930e-b01e-005d-27b7-7706e5000000
Time:2025-02-05T10:21:19.9756747Z</Message></Error>"
    at java.lang.invoke.MethodHandle.invokeWithArguments (MethodHandle.java:732)
    at com.azure.core.implementation.MethodHandleReflectiveInvoker.invokeStatic (MethodHandleReflectiveInvoker.java:26)
    at com.azure.core.implementation.http.rest.ResponseExceptionConstructorCache.invoke (ResponseExceptionConstructorCache.java:53)
    at com.azure.core.implementation.http.rest.RestProxyBase.instantiateUnexpectedException (RestProxyBase.java:407)
    at com.azure.core.implementation.http.rest.AsyncRestProxy.lambda$ensureExpectedStatus$1 (AsyncRestProxy.java:135)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:113)
    at reactor.core.publisher.Operators$ScalarSubscription.request (Operators.java:2571)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.request (FluxMapFuseable.java:171)
    at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.set (Operators.java:2367)
    at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.onSubscribe (Operators.java:2241)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onSubscribe (FluxMapFuseable.java:96)
    at reactor.core.publisher.MonoJust.subscribe (MonoJust.java:55)
    at reactor.core.publisher.InternalMonoOperator.subscribe (InternalMonoOperator.java:76)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:165)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxHide$SuppressFuseableSubscriber.onNext (FluxHide.java:137)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxHide$SuppressFuseableSubscriber.onNext (FluxHide.java:137)
    at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext (FluxOnErrorResume.java:79)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext (FluxMapFuseable.java:129)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext (FluxOnErrorResume.java:79)
    at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext (MonoFlatMap.java:158)
    at reactor.core.publisher.Operators$MonoInnerProducerBase.complete (Operators.java:2842)
    at reactor.core.publisher.MonoSingle$SingleSubscriber.onComplete (MonoSingle.java:180)
    at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete (MonoFlatMapMany.java:261)
    at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onComplete (FluxContextWrite.java:126)
    at reactor.core.publisher.MonoUsing$MonoUsingSubscriber.onNext (MonoUsing.java:232)
    at reactor.core.publisher.FluxMap$MapSubscriber.onNext (FluxMap.java:122)
    at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onNext (FluxSwitchIfEmpty.java:74)
    at reactor.core.publisher.FluxHandle$HandleSubscriber.onNext (FluxHandle.java:129)
    at reactor.core.publisher.FluxMap$MapConditionalSubscriber.onNext (FluxMap.java:224)
    at reactor.core.publisher.FluxDoFinally$DoFinallySubscriber.onNext (FluxDoFinally.java:113)
    at reactor.core.publisher.FluxHandleFuseable$HandleFuseableSubscriber.onNext (FluxHandleFuseable.java:194)
    at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext (FluxContextWrite.java:107)
    at reactor.core.publisher.Operators$BaseFluxToMonoOperator.completePossiblyEmpty (Operators.java:2097)
    at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete (MonoCollectList.java:118)
    at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete (FluxPeek.java:260)
    at reactor.core.publisher.FluxMap$MapSubscriber.onComplete (FluxMap.java:144)
    at reactor.netty.channel.FluxReceive.onInboundComplete (FluxReceive.java:415)
    at reactor.netty.channel.ChannelOperations.onInboundComplete (ChannelOperations.java:446)
    at reactor.netty.channel.ChannelOperations.terminate (ChannelOperations.java:500)
    at reactor.netty.http.client.HttpClientOperations.onInboundNext (HttpClientOperations.java:768)
    at reactor.netty.channel.ChannelOperationsHandler.channelRead (ChannelOperationsHandler.java:114)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at com.azure.core.http.netty.implementation.AzureSdkHandler.channelRead (AzureSdkHandler.java:224)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:442)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead (CombinedChannelDuplexHandler.java:436)
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead (ByteToMessageDecoder.java:346)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:318)
    at io.netty.channel.CombinedChannelDuplexHandler.channelRead (CombinedChannelDuplexHandler.java:251)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:442)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.handler.ssl.SslHandler.unwrap (SslHandler.java:1475)
    at io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible (SslHandler.java:1349)
    at io.netty.handler.ssl.SslHandler.decode (SslHandler.java:1389)
    at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection (ByteToMessageDecoder.java:529)
    at io.netty.handler.codec.ByteToMessageDecoder.callDecode (ByteToMessageDecoder.java:468)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:290)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:412)
    at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead (DefaultChannelPipeline.java:1410)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:440)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:420)
    at io.netty.channel.DefaultChannelPipeline.fireChannelRead (DefaultChannelPipeline.java:919)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read (AbstractNioByteChannel.java:166)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey (NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized (NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys (NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run (NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run (SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run (ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run (FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run (Thread.java:840)
    Suppressed: java.lang.Exception: #block terminated with an error
        at reactor.core.publisher.BlockingSingleSubscriber.blockingGet (BlockingSingleSubscriber.java:104)
        at reactor.core.publisher.Flux.blockLast (Flux.java:2817)
        at com.azure.core.util.paging.ContinuablePagedByIteratorBase.requestPage (ContinuablePagedByIteratorBase.java:102)
        at com.azure.core.util.paging.ContinuablePagedByItemIterable$ContinuablePagedByItemIterator.<init> (ContinuablePagedByItemIterable.java:75)
        at com.azure.core.util.paging.ContinuablePagedByItemIterable.iterator (ContinuablePagedByItemIterable.java:55)
        at java.lang.Iterable.spliterator (Iterable.java:101)
        at com.azure.core.util.paging.ContinuablePagedIterable.stream (ContinuablePagedIterable.java:85)
        at com.microsoft.azure.toolkit.lib.storage.blob.BlobContainerModule.loadResourceFromAzure (BlobContainerModule.java:68)
        at com.microsoft.azure.toolkit.lib.storage.blob.BlobContainerModule.loadResourceFromAzure (BlobContainerModule.java:25)
        at com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule.get (AbstractAzResourceModule.java:286)
        at com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule.getOrDraft (AbstractAzResourceModule.java:343)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.lambda$getDeploymentStorageContainer$10 (CreateOrUpdateFunctionAppTask.java:160)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.lambda$registerSubTask$18 (CreateOrUpdateFunctionAppTask.java:279)
        at com.microsoft.azure.toolkit.lib.appservice.task.CreateOrUpdateFunctionAppTask.doExecute (CreateOrUpdateFunctionAppTask.java:489)
        at com.microsoft.azure.maven.function.DeployMojo.createOrUpdateResource (DeployMojo.java:419)
        at com.microsoft.azure.maven.function.DeployMojo.doExecute (DeployMojo.java:243)
        at com.microsoft.azure.maven.AbstractAzureMojo.execute (AbstractAzureMojo.java:328)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
        at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
        at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
        at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
        at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
        at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
        at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
        at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
        at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
        at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke (Method.java:569)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
[ERROR] 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[DEBUG] Shutting down adapter factory; available factories [file-lock, rwlock-local, semaphore-local, noop]; available name mappers [discriminating, file-gav, file-hgav, file-static, gav, static]
[DEBUG] Shutting down 'file-lock' factory
[DEBUG] Shutting down 'rwlock-local' factory
[DEBUG] Shutting down 'semaphore-local' factory
[DEBUG] Shutting down 'noop' factory

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants