diff options
Diffstat (limited to 'container/errors.go')
| -rw-r--r-- | container/errors.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/container/errors.go b/container/errors.go index 1a828e0f..8d8ad492 100644 --- a/container/errors.go +++ b/container/errors.go @@ -24,6 +24,10 @@ func messageFromError(err error) (string, bool) { return m, ok } + if m, ok := messagePrefix[TmpfsSizeError]("", err); ok { + return m, ok + } + return zeroString, false } |
