From eddf31f9157c1dc3bc88e64b648572acb57a2251 Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Fri, 24 Feb 2023 15:49:51 -0700 Subject: [PATCH] Fix lint error --- cmd/dendrite-demo-pinecone/monolith/monolith.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dendrite-demo-pinecone/monolith/monolith.go b/cmd/dendrite-demo-pinecone/monolith/monolith.go index e8a29e418..ea8e985c7 100644 --- a/cmd/dendrite-demo-pinecone/monolith/monolith.go +++ b/cmd/dendrite-demo-pinecone/monolith/monolith.go @@ -215,7 +215,7 @@ func (p *P2PMonolith) WaitForShutdown() { func (p *P2PMonolith) closeAllResources() { logrus.Info("Closing monolith resources") if p.httpServer != nil { - p.httpServer.Shutdown(context.Background()) + _ = p.httpServer.Shutdown(context.Background()) } select {