James Hickey

Results 139 comments of James Hickey

@toutas Here's the way things should work: ## Happy Path 1. A job runs and grabs a lock if it's available (if not, then that means another run of the...

There's also the distinction between a normal job and a "long running job". Maybe there's an opportunity to mark an invocable as a "long running job" where under the covers...

Cool! Would love the help. You can have a look at this file (the docs for the mailer): https://github.com/jamesmh/coravel/blob/master/DocsV2/docs/Mailing/README.md

Ya I think that makes sense to override the global from if you call `From()` 👍

In `ConfigureServices()` did you call `services.AddCoravelPro(typeof(ApplicationDbContext));`? This step is [here](https://www.docs.pro.coravel.net/Installation/#basic-configuration) in the docs. Let me know if that's the issue or not - thanks!

Coravel _could_ offer something like that. The problem with this though is that this would apply to all messages in the queue and would significantly reduce throughput across the board....

Thanks for looking into this. I'm okay with adding some public getters, as long as we keep the setters private. Notably, for the SMTP Mailer this is needed for the...

Mailer is not a priority right now for me (maintainer). Feel free to fix it and submit a PR if you feel you get lots of value from using the...

So, TBH the duplicates in `csproj` files is not an issue at all. But I'm open to starting a simple `Directory.Build.props`. Let's not add the sonar analyzer yet though. Would...

So I'd uncomment the line with `//services.AddTransient();`. The original exception you were getting `Error while validating the service descriptor...` means that the constructor of your `PricingUpdateController` has a mismatch with...