summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@redhat.com>2021-04-14 13:38:27 -0400
committerMatthew Heon <mheon@redhat.com>2021-04-16 11:22:18 -0400
commit044c0a5437f9f286061b8d8424a9258b2a7e21ce (patch)
treeeaec45cd8b06010ded209e7c178f102dec9f80ec /pkg
parente5fff58eb5506efbe4bdbe52c900378af22c6aa6 (diff)
downloadpodman-044c0a5437f9f286061b8d8424a9258b2a7e21ce.tar.gz
podman-044c0a5437f9f286061b8d8424a9258b2a7e21ce.tar.bz2
podman-044c0a5437f9f286061b8d8424a9258b2a7e21ce.zip
pkg/errorhandling.JoinErrors: don't throw away context for lone errors
When our multierror contains just one error, don't extract its text only to rewrap it, because doing so discards any stack trace information that might have been added closer to where the error actually originated. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/errorhandling/errorhandling.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/errorhandling/errorhandling.go b/pkg/errorhandling/errorhandling.go
index b1923be98..9dc545ebb 100644
--- a/pkg/errorhandling/errorhandling.go
+++ b/pkg/errorhandling/errorhandling.go
@@ -24,6 +24,9 @@ func JoinErrors(errs []error) error {
if finalErr == nil {
return finalErr
}
+ if len(multiE.WrappedErrors()) == 1 && logrus.IsLevelEnabled(logrus.TraceLevel) {
+ return multiE.WrappedErrors()[0]
+ }
return errors.New(strings.TrimSpace(finalErr.Error()))
}