From 18283dda428874f3a76fd3e0917a4ba346482acd Mon Sep 17 00:00:00 2001 From: Jake Coffman Date: Wed, 19 Jun 2024 08:39:12 -0500 Subject: [PATCH] print the error we're suppressing --- cmd/dependabot/internal/cmd/ls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dependabot/internal/cmd/ls.go b/cmd/dependabot/internal/cmd/ls.go index e5ba43a..a7dd5fd 100644 --- a/cmd/dependabot/internal/cmd/ls.go +++ b/cmd/dependabot/internal/cmd/ls.go @@ -63,7 +63,7 @@ func NewListCommand() *cobra.Command { // HACK: we cancel context to stop the containers, so we don't know if there was a failure. // A correct solution would involve changes with dependabot-core, which is good, but // I am just hacking this together right now. - // log.Fatalf("updater failure: %v", err) + log.Printf("HACK: suppressing updater failure: %v", err) return nil }