Steven Giesel

Results 173 comments of Steven Giesel

Hey @samcov In short: It is currently "SINGLE MODE" if you wanna say so. If you would spin up multiple docker images with their own database, you could achieve that,...

I don't even think that the solution is "not an elaborate" as you put it. I would do the same and track the running tasks, which gives you the flexibility...

I will have a look after #21 if it fine with you

Maybe I should have explained that earlier a bit more in detail or create a `CONTRIBUTING.md`. The idea behind the `CHANGELOG.md` is basically only adding in the **Unreleased** section. When...

There seems to be a deadlock (GitHub runner timed out after 6h)

> This is a weird one. It works fine using Visual Studio and Jetbrains IDE testing mechanisms. Also works fine if I target the individual tests that are failing using...

On another side note: GitHub runners are only single threaded (v)CPU's IIRC. So this could also influence `local VS GH Runner`

> It indeed sounds like `Dispose`. For me `EachJobRunHasItsOwnScope` is deadlocking inside the while-loop. The test in question has the following definition: ```csharp WithCronExpression("* * * * *").And.WithCronExpression("* * *...

Okay I found **the** culprit -.- and I am not sure why it did work on `main`: ```csharp cronJobs = jobs.Where(c => c.CronExpression is not null).ToFrozenSet(); ``` As we are...

Well that depends - if you want to run multiple jobs at the same time with different parameters I do think that is totally fine and valid. For the sake...