-
Notifications
You must be signed in to change notification settings - Fork 188
Open
Description
This is how i execute my QuartzMin inside Docker (K8s)
`
var host = WebHost.CreateDefaultBuilder(args).Configure(app =>
{
app.UseStaticFiles(); // For the wwwroot folder
app.UseStaticFiles(new StaticFileOptions
{
FileProvider = new PhysicalFileProvider(
Path.Combine(Directory.GetCurrentDirectory(), "Content")),
RequestPath = "/Content"
});
app.UseHttpsRedirection();
app.UseQuartzmin(new QuartzminOptions() { Scheduler = scheduler, ProductName = "Splitit Quartz Monitor" });
}).ConfigureServices(services =>
{
services.AddQuartzmin();
})
.Build();
host.Start();
while (!scheduler.IsShutdown)
Thread.Sleep(250);`
But i often get timeouts when i have many jobs
How do i extend this?
https://quartz.sandbox.local/Jobs
HTTP ERROR 500
Metadata
Metadata
Assignees
Labels
No labels