From d2c57a687a7fbbd4c89c645f23453643b4752c9a Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 7 Mar 2025 13:50:59 -0900 Subject: [PATCH] test --- examples/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/main.go b/examples/main.go index 7339aa6..c1eb484 100644 --- a/examples/main.go +++ b/examples/main.go @@ -125,7 +125,7 @@ func startWebInterface(clock *derby.DerbyClock, events <-chan derby.Event, webPo <-ctx.Done() // Gracefully shut down the server - if err := server.Stop(); err != nil { + if err := server.Shutdown(ctx); err != nil { logger.Error("Error shutting down web server", "error", err) } }