Batches UI on Dashboard - one per thread?

I’ve just upgraded to hangfire pro (version 1.4.7).

When I check my web ui it looks like I have one Batches button per thread for each worker. This obscures the rest of the webpage. I have made sure I have called GlobalConfiguration.Configuration.UseBatches();

Is there something I’m missing?

@burns, in what method did you call the UseBatches method? It should be called only during the startup, and only once. Looks like it is called multiple times in your configuration.

1 Like

Thanks @odinserj you were right - I was calling it on each service. I am only calling UseBatches on the web ui now and everything is good.

Good to know, thanks for the feedback!