Always display full message on git checkout error
[Delivers #137546755]
This commit is contained in:
parent
f36ee0ce21
commit
10a7385891
1 changed files with 5 additions and 2 deletions
|
@ -16,7 +16,9 @@ class WorkerError(object):
|
|||
},
|
||||
|
||||
'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': {
|
||||
|
@ -80,7 +82,8 @@ class WorkerError(object):
|
|||
},
|
||||
|
||||
'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
|
||||
},
|
||||
|
||||
|
|
Reference in a new issue