perrich / Hangfire.MemoryStorage

A memory storage for Hangfire.
Apache License 2.0
131 stars 43 forks source link

Dont use static fields to keep track of locks #43

Closed Spacefish closed 1 year ago

Spacefish commented 1 year ago

This is to increase separation between multiple instances of the Memory Storage during Unit Tests which execute in parallel.

perrich commented 1 year ago

Static removing looks good. Thanks

agehrke commented 7 months ago

Great change! I actually need this to run concurrent tests of a Host using Hangfire. Getting DistributedLockTimeoutException at the moment. Any chance you could release this, @perrich?