Always display full message on git checkout error

[Delivers #137546755]
This commit is contained in:
Joseph Schorr 2017-01-12 16:52:28 -05:00
parent f36ee0ce21
commit 10a7385891

View file

@ -16,7 +16,9 @@ class WorkerError(object):
}, },
'io.quay.builder.gitcheckout': { 'io.quay.builder.gitcheckout': {
'message': 'Could not checkout git ref. Have you force pushed recently?', 'message': 'Could not checkout git ref. If you force pushed recently, ' +
'the commit may be missing.',
'show_base_error': True,
}, },
'io.quay.builder.cannotextractbuildpack': { 'io.quay.builder.cannotextractbuildpack': {
@ -80,7 +82,8 @@ class WorkerError(object):
}, },
'io.quay.builder.errorduringphasetransition': { 'io.quay.builder.errorduringphasetransition': {
'message': 'Error during phase transition. If this problem persists please contact customer support.', 'message': 'Error during phase transition. If this problem persists ' +
'please contact customer support.',
'is_internal': True 'is_internal': True
}, },