buildman: show base error for buildpack failures
Whereas before these were reserved only for S3 errors, users need these specifics to debug custom-git configurations.
This commit is contained in:
parent
628d80895d
commit
15fdae6688
1 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,8 @@ class WorkerError(object):
|
||||||
self._error_handlers = {
|
self._error_handlers = {
|
||||||
'io.quay.builder.buildpackissue': {
|
'io.quay.builder.buildpackissue': {
|
||||||
'message': 'Could not load build package',
|
'message': 'Could not load build package',
|
||||||
'is_internal': True
|
'is_internal': True,
|
||||||
|
'show_base_error': True,
|
||||||
},
|
},
|
||||||
|
|
||||||
'io.quay.builder.cannotextractbuildpack': {
|
'io.quay.builder.cannotextractbuildpack': {
|
||||||
|
|
Reference in a new issue