Jarle Friestad
Jarle Friestad
I think this issue can be closed. Strawberry Shake contains an extension method `ConfigureHttpClient` where the second parameter is the .net http client builder. This builder can be used to...
This would be a nice feature to have. If you want to load test different endpoints to see the max throughput without being affected by the amount of parallell scenarios...
@AntyaDev This could also solve the issue. The main thought is to run load test in the CI each weekend to verify the throughput on each endpoint in the api...
Wont this generate multiple reports? NBomberRunner.RegisterScenarios(scenarios).WithTargetScenarios("scenario1").Run() NBomberRunner.RegisterScenarios(scenarios).WithTargetScenarios("scenario2").Run()
As a current workaround i have used the following ObjectFieldDescriptor extension method based on similar approach in FilterFieldDescriptorExtensions ```csharp public static TFieldDescriptor AsNonNull(this TFieldDescriptor descriptor) where TFieldDescriptor : IDescriptor {...