We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The job starts for every worker. If I set the server worker count to 2 then it starts 2 times, if I set it to 50 then it starts 50 times.
I use the latest Hangfire version (1.6.20) and SQLite for storage.
The job is enqueued from the web application.
BackgroundJob.Enqueue(() => StartDatabaseExport(databaseId));
The server is started from another application (windows service).
var options = new BackgroundJobServerOptions { WorkerCount = 50 }; new BackgroundJobServer(options);
Any ideas?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The job starts for every worker. If I set the server worker count to 2 then it starts 2 times, if I set it to 50 then it starts 50 times.
I use the latest Hangfire version (1.6.20) and SQLite for storage.
The job is enqueued from the web application.
BackgroundJob.Enqueue(() => StartDatabaseExport(databaseId));
The server is started from another application (windows service).
Any ideas?
The text was updated successfully, but these errors were encountered: