No jobs are processed when the worker count is 1

Using:

app.UseHangfireServer(new BackgroundJobServerOptions { WorkerCount = 1 });

No jobs are processed from the queue:

Setting the worker count to 2, correctly process two jobs concurrently. I’m using the latest dev branch from github to test this. Is this something anyone else has come across?