Skip to content

Commit

Permalink
Add GrpcWebHandler test
Browse files Browse the repository at this point in the history
  • Loading branch information
lemaitre-aneo committed May 23, 2024
1 parent 1a440c0 commit 137a838
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
runtime: windows-x64
- os: windows-2022
runtime: windows-x64
handler:
- ''
- GrpcWebHandler
exclude:
- dotnet:
version: ''
Expand Down Expand Up @@ -87,6 +90,8 @@ jobs:
- name: Test
working-directory: packages/csharp/
shell: bash
env:
GrpcClient__HttpMessageHandler: ${{ matrix.handler }}
run: |
set +e
set -x
Expand Down Expand Up @@ -122,6 +127,6 @@ jobs:
uses: dorny/test-reporter@v1
if: always()
with:
name: ConnectivityTests ${{ matrix.platform.os }} ${{ matrix.dotnet.framework }}
name: ConnectivityTests ${{ matrix.platform.os }} ${{ matrix.dotnet.framework }} ${{ matrix.handler }}
path: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx
reporter: dotnet-trx
7 changes: 6 additions & 1 deletion packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ internal static class ConnectivityKindExt
private static string CertFolder
=> Environment.GetEnvironmentVariable("CertFolder") ?? "../../../../certs";

private static string MessageHandler
=> Environment.GetEnvironmentVariable("GrpcClient__HttpMessageHandler") ?? "";

internal static bool IsTls(this ConnectivityKind kind)
=> kind switch
{
Expand Down Expand Up @@ -90,7 +93,8 @@ internal static (string?, string?) GetClientCertPath(this ConnectivityKind kind)
internal static string GetEndpoint(this ConnectivityKind kind)
=> kind switch
{
ConnectivityKind.Unencrypted => RuntimeInformation.FrameworkDescription.StartsWith(".NET Framework")
ConnectivityKind.Unencrypted => RuntimeInformation.FrameworkDescription.StartsWith(".NET Framework") || MessageHandler.ToLower()
.Contains("web")
? "http://localhost:4999"
: "http://localhost:5000",
ConnectivityKind.TlsInsecure => "https://localhost:5001",
Expand All @@ -113,6 +117,7 @@ internal static GrpcChannel GetChannel(this ConnectivityKind kind)
CertPem = certPath ?? "",
KeyPem = keyPath ?? "",
CaCert = kind.GetCaCertPath() ?? "",
HttpMessageHandler = MessageHandler,
});
}
}
10 changes: 10 additions & 0 deletions packages/csharp/ArmoniK.Api.Client/Options/GrpcClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,15 @@ public bool HasClientCertificate
/// Timeout for grpc requests. Defaults to no timeout.
/// </summary>
public TimeSpan RequestTimeout { get; set; } = Timeout.InfiniteTimeSpan;

/// <summary>
/// Which HttpMessageHandler to use.
/// Valid options:
/// - `HttpClientHandler`
/// - `WinHttpHandler`
/// - `GrpcWebHandler`
/// If the handler is not set, the best one will be used.
/// </summary>
public string HttpMessageHandler { get; set; } = "";
}
}
18 changes: 18 additions & 0 deletions packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,14 @@ public static GrpcChannel CreateChannel(GrpcClient optionsGrpcClient,
logger?.LogWarning("OverrideTargetName is not supported");
}

// ReSharper disable once ConvertTypeCheckPatternToNullCheck
if (ParseHandler(optionsGrpcClient.HttpMessageHandler) is HandlerType handlerType)
{
return CreateChannelInternal(optionsGrpcClient,
handlerType,
logger);
}

// If dotnet core (>= Net 5), we can use HttpClientHandler
if (!RuntimeInformation.FrameworkDescription.StartsWith(".NET Framework"))
{
Expand Down Expand Up @@ -489,6 +497,16 @@ public static X509Certificate2 GetCertificate(GrpcClient optionsGrpcClient)
X509KeyStorageFlags.Exportable);
}

private static HandlerType? ParseHandler(string handler)
=> handler.ToLower() switch
{
"" => null,
"httpclienthandler" or "httpclient" or "http" or "client" => HandlerType.Http,
"winhttphandler" or "winhttp" or "win" => HandlerType.Win,
"grpcbebhandler" or "grpcweb" or "web" => HandlerType.Web,
_ => throw new ArgumentException($"Invalid HandlerType: {handler}"),
};

private enum HandlerType
{

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,1)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,10)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,100)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,2)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,1)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,10)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,100)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,2)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsStore,1)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsStore,10)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net6.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsStore,100)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,1)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,10)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,100)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsCert,2)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_0`2.<<ParallelSelectOrdered>g__Run|0>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,1)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,10)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,100)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsInsecure,2)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsStore,1)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaiter)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsStore,10)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()

Check failure on line 511 in packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs

View workflow job for this annotation

GitHub Actions / ConnectivityTests ubuntu-latest net8.0 GrpcWebHandler

ArmoniK.Api.Client.Tests.ConnectivityTests ► MultipleChannels(MTlsStore,100)

Failed test found in: ./packages/csharp/ArmoniK.Api.Client.Test/TestResults/test-results.trx Error: System.ArgumentException : Invalid HandlerType: GrpcWebHandler
Raw output
System.ArgumentException : Invalid HandlerType: GrpcWebHandler
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.ParseHandler(String handler) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 511
   at ArmoniK.Api.Client.Submitter.GrpcChannelFactory.CreateChannel(GrpcClient optionsGrpcClient, ILogger logger) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client/Submitter/GrpcChannelFactory.cs:line 390
   at ArmoniK.Api.Client.Tests.ConnectivityKindExt.GetChannel(ConnectivityKind kind) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityKind.cs:line 113
   at ArmoniK.Api.Client.Tests.ConnectivityTests.<>c__DisplayClass1_0.<MultipleChannels>b__1(Int32 i) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 59
   at ArmoniK.Utils.ParallelSelectInternal.<>c__DisplayClass0_1`2.<<ParallelSelectOrdered>b__1>d.MoveNext()
--- End of stack trace from previous location ---
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+MoveNext()
   at ArmoniK.Utils.ParallelSelectInternal.ParallelSelectOrdered[TInput,TOutput](IAsyncEnumerable`1 enumerable, Func`2 func, Int32 parallelism, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
   at ArmoniK.Api.Client.Tests.ConnectivityTests.MultipleChannels(ConnectivityKind connectivityKind, Int32 concurrency) in /home/runner/work/ArmoniK.Api/ArmoniK.Api/packages/csharp/ArmoniK.Api.Client.Test/ConnectivityTest.cs:line 56
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult()
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.<>c__DisplayClass4_0.<PerformWork>b__0()
   at NUnit.Framework.Internal.ContextUtils.<>c__DisplayClass1_0`1.<DoIsolated>b__0(Object _)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated(ContextCallback callback, Object state)
   at NUnit.Framework.Internal.ContextUtils.DoIsolated[T](Func`1 func)
   at NUnit.Framework.Internal.Execution.SimpleWorkItem.PerformWork()
/// <summary>
Expand Down

0 comments on commit 137a838

Please sign in to comment.