Merge pull request #71 from michaellady/feature/convoy-dashboard

Add lint fixes and E2E tests for convoy dashboard
This commit is contained in:
Steve Yegge
2026-01-04 13:45:54 -08:00
committed by GitHub
11 changed files with 2463 additions and 72 deletions

View File

@@ -76,6 +76,9 @@ func runDashboard(cmd *cobra.Command, args []string) error {
Addr: fmt.Sprintf(":%d", dashboardPort),
Handler: handler,
ReadHeaderTimeout: 10 * time.Second,
ReadTimeout: 30 * time.Second,
WriteTimeout: 60 * time.Second,
IdleTimeout: 120 * time.Second,
}
return server.ListenAndServe()
}