diff --git a/updates/main.go b/updates/main.go index 0352f54b..550e23ac 100644 --- a/updates/main.go +++ b/updates/main.go @@ -269,7 +269,10 @@ func checkForUpdates(ctx context.Context) (err error) { func stop() error { if registry != nil { - return registry.Cleanup() + err := registry.Cleanup() + if err != nil { + log.Warningf("updates: failed to clean up registry: %s", err) + } } return stopVersionExport()