bhehe
bhehe
I've been writing some integration tests and when it came time to explore how to recreate/mimic the cancellation support, I wasn't finding a way to simply cancel a single specific...
I was working with some testing code and the related recurring job I was trying to trigger was not registered via **_RecurringJob.AddOrUpdate(..)_** and was surprised that the call to **_RecurringJobManager.Trigger(name)_**...
As I've worked with Hangfire recently to implement a new project, we've invented our own 'configuration section' type to express the details around a recurring job (display name, cron, etc.)...
I'm leveraging Hangfire in a new project and one of the things I've bumped into is that some of the configuration & behavioral traits are only supported by use of...
Currently we're using Scrutor to scan & register a set of components and use the approach below: ``` services.Scan(scan => scan.FromAssemblies(assembliesToScan) .AddClasses(classes => classes.Where(type => typeFilter(type) && IsService(type))) .AsSelfWithInterfaces() .WithScopedLifetime());...
**Problem:** I was attempting to write a unit test today where I have code that is needing to resolve & reference the two types (TelemetryConfiguration and TelemetryClient) and found I...
Using multiple instances of a 'test host' that arranges Hangfire using the 'MemoryStorage' provider
### Context I'm using a 'test host' based approach in some of my integration tests and each test case/method creates its own discrete instance. When registering Hangfire we're using the...
As I'm working on our CI/CD pipeline for deploying the application that uses Hangfire, we've decided we want to have the database schema creation/updates occur as part of the release...
I've been struggling with a testing scenario that I've not been able to figure out so I'm seeking help/input on how to triage further and any thoughts on the possible...
'SDK Not Found' failure when building in Azure Pipeline - But everything works fine when ran locally
So, my understanding is that when we use the version-qualifier on the SDK tag in the project file, this causes the build to auto-magically go out and treat it like...