-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jobs never being executed #50
Comments
@RomanKreisel - do you have a repo where I can reproduce at my end |
@imranmomin on my local machine this situation can be reproduced by replacing Hangfire.AzureCosmosDb/sample/Program.cs Line 37 in 6e6b040
with another overload (using CosmosClient instance in parameters): o.UseAzureCosmosDbStorage(new CosmosClient(url, secretKey, cosmoClientOptions), database, collection); Also, this line should be removed because it is redundant. Hangfire.AzureCosmosDb/sample/Program.cs Line 40 in 6e6b040
Jobs are enqueued but not executed. There are nothing extraordinary in logs. UPD: As a possible workaround Init API can be changed to use |
This problem is also relevant to me. |
For me, data got saved in Cosmos Db, but Jobs never being executed. I am using MassTransit with ServiceBus. Did anyone encounter the same issue? |
Has this issue already been solved? I've got the same problem and this makes the extension unusable for me.. |
Having the same issue. This library is not usable until this is fixed. |
Use this overload to run the jobs. |
I have a pretty standard setup (using ASP.NET Core 6, following examples from hangfire.io and this github page), but the jobs are never being executed.
The text was updated successfully, but these errors were encountered: