Skip to content

Commit

Permalink
* Change versions of java lib and bump version for worker lib (#55)
Browse files Browse the repository at this point in the history
* Change versions of java lib and bump version for worker libs
  • Loading branch information
ag-ramachandran authored Sep 5, 2024
1 parent 63a09e7 commit 4b25328
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Description>Kusto extensions for .NET isolated Azure Functions</Description>
<Product>Kusto Binding Worker (.NET isolated Azure Functions)</Product>
<!-- Default Version for dev -->
<Version>1.0.10-Preview</Version>
<SupportedVersion>1.0.10-Preview</SupportedVersion>
<Version>1.0.11-Preview</Version>
<SupportedVersion>1.0.11-Preview</SupportedVersion>
<PackageId>Microsoft.Azure.Functions.Worker.Extensions.Kusto</PackageId>
<PackageTags>Microsoft Azure WebJobs;AzureFunctions Isolated Dotnet;Isolated Kusto Azure;Kusto Worker</PackageTags>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
Expand Down
6 changes: 3 additions & 3 deletions java-library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.functions</groupId>
<artifactId>azure-functions-java-library-kusto</artifactId>
<version>1.0.9-Preview</version>
<version>1.0.11-Preview</version>
<packaging>jar</packaging>
<name>Microsoft Azure Functions Java Kusto Types</name>
<description>This package contains all Java annotations to interact with Microsoft Azure Functions runtime for Kusto (ADX) Bindings.</description>
Expand Down Expand Up @@ -34,9 +34,9 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<azure.functions.maven.plugin.version>1.22.0</azure.functions.maven.plugin.version>
<azure.functions.java.library.version>3.0.0</azure.functions.java.library.version>
<azure.functions.java.library.version>3.1.0</azure.functions.java.library.version>
<formatter.version>2.21.0</formatter.version>
<junit.version>5.9.2</junit.version>
<junit.version>5.11.0</junit.version>
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<maven.resources.plugin.version>3.3.0</maven.resources.plugin.version>
<maven.dependency.plugin.version>3.3.0</maven.dependency.plugin.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,11 @@
// An option to set the ManagedServiceIdentity option. If set to "system" will use SystemManagedIdentity
// else use UserManagedIdentity
String managedServiceIdentity() default "";

// Indicates the type of ingestion. If set to "queued" will use queued ingestion. Defaults to managed ingestion
String ingestionTyoe() default "managed";

// Optional attribute pertinent to queued ingestion type. When using queued ingestion, the following values can be specified
// This is specified as ``@flushImmediately=false,@pollIntervalSeconds=15,@pollTimeoutMinutes=5`` like other kusto binding properties.
String ingestionProperties() default "@flushImmediately=false,@pollIntervalSeconds=15,@pollTimeoutMinutes=5";
}
3 changes: 1 addition & 2 deletions test/IntegrationTests/KustoBindingE2EIntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -568,8 +568,7 @@ public static void InputsValidateQueuedIngestion(
Assert.Single(keys);
Assert.Equal("Text", keys.First().ToString());
}

Assert.Equal(3, showResults.Count); // 2 success 1 fail
Assert.True(showResults.Count >= 2, "There should atleast be 2 ingestions in the last 2 minutes");
Assert.True(id > 0);
}

Expand Down

0 comments on commit 4b25328

Please sign in to comment.