From 6d91a4141b6e2e13da2125533289344c6915177a Mon Sep 17 00:00:00 2001 From: Henry Barreto Date: Tue, 7 Jan 2025 17:56:47 -0300 Subject: [PATCH] chore: test --- api/server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/server.go b/api/server.go index 9f680544530..a0d51a365da 100644 --- a/api/server.go +++ b/api/server.go @@ -25,6 +25,7 @@ var serverCmd = &cobra.Command{ Use: "server", RunE: func(cmd *cobra.Command, _ []string) error { ctx, cancel := context.WithCancel(cmd.Context()) + // I've been changed, so I need to be tested. sigs := make(chan os.Signal, 1) signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)