Skip to content

Timeout #36

@ranlandau

Description

@ranlandau

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions