Add missing phase info
This commit is contained in:
parent
7a199f63eb
commit
e8458267fd
2 changed files with 7 additions and 3 deletions
|
@ -5824,6 +5824,9 @@ quayApp.directive('buildMessage', function () {
|
|||
case 'building':
|
||||
return 'Building image from Dockerfile';
|
||||
|
||||
case 'checking-cache':
|
||||
return 'Looking up cached images';
|
||||
|
||||
case 'priming-cache':
|
||||
return 'Priming cache for build';
|
||||
|
||||
|
@ -5880,6 +5883,7 @@ quayApp.directive('buildProgress', function () {
|
|||
break;
|
||||
|
||||
case 'initializing':
|
||||
case 'checking-cache':
|
||||
case 'starting':
|
||||
case 'waiting':
|
||||
case 'cannot_load':
|
||||
|
|
Reference in a new issue