Gabriel Lucaci
Gabriel Lucaci
This can be tackled with `ICollectionFixture`. You can create for example a `ICollectionFixture` for `MongoDB` ```csharp [CollectionDefinition("MongoContainer")] public class MongoCollectionFixture : ICollectionFixture { } ``` and than use `MongoCollectionFixture` in...
Yes, that's right you don't have support for parallel test runs but at least for non-parallel ones that will help you. [Here](https://github.com/xunit/samples.xunit/blob/main/AssemblyFixtureExample/Samples.cs) is a sample from xUnit how we could...
"No local dev for anything of serious complexity"... hmm... Kafka can be hosted in a container. Maybe can someone give us a technical explanation why this is not possible, or...
Until then you can try this https://github.com/SwissLife-OSS/squadron
We have also a problem with this one and starting seeing JVM memory pressure on all our cluster because of it. The problem is if you have like 200 services,...
@axw any news about this feature?
Currently we don't have any memory issues but the cluster has the maximum shards allocation which means we cannot create any additional shard. (e.g. adding a watcher). 95% of the...
Sure, bellow you can see a document from one of the apps. ``` { "_index": ".ds-metrics-apm.app.api_1", "_id": "i4vUnoQBHKZw1ZUhanQN", "_version": 1, "_score": 0, "_source": { "agent": { "name": "dotnet", "version": "1.4.0.599"...
@michaelstaib at least in my test this is not working. Just tested with `13.0.0-preview.103` ```csharp new ServiceCollection() .AddSingleton() .AddGraphQLServer() .AddQueryType(d => d .Field("foo") .Type() .Resolve((_, _) => null)); ``` When...
Sorry didn't saw this PR. This was done and merge in #127