File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -1534,6 +1534,12 @@ type SyncError {
1534
1534
reconciler : String !
1535
1535
}
1536
1536
1537
+ type SynchronizationFailingError implements StateError {
1538
+ detail : String !
1539
+ level : ErrorLevel !
1540
+ revision : String !
1541
+ }
1542
+
1537
1543
"""Team type."""
1538
1544
type Team {
1539
1545
"""The NAIS applications owned by the team."""
Original file line number Diff line number Diff line change 25
25
... on InvalidNaisYamlError {
26
26
detail
27
27
}
28
+ ... on SynchronizationFailingError {
29
+ detail
30
+ }
28
31
... on NewInstancesFailingError {
29
32
failingInstances
30
33
}
98
101
{:else if $data .__typename === ' InvalidNaisYamlError' }
99
102
<div class =" wrapper" >
100
103
<Alert variant =" error" >
101
- Nais-yaml might be invalid for application <strong >{app }</strong >.
104
+ The nais.yaml spec is invalid for application <strong >{app }</strong >.
105
+ <br >{$data .detail }
106
+ </Alert >
107
+ </div >
108
+ {:else if $data .__typename === ' SynchronizationFailingError' }
109
+ <div class =" wrapper" >
110
+ <Alert variant =" error" >
111
+ Application <strong >{app }</strong > failed to synchronize properly. The operation will be retried.
112
+ <br >{$data .detail }
102
113
</Alert >
103
114
</div >
104
115
{:else if $data .__typename === ' NewInstancesFailingError' }
You can’t perform that action at this time.
0 commit comments