Skip to content

Commit 7dd00c3

Browse files
committed
Support more detail in app error messages, refs nais/system#24
1 parent aa2d6e1 commit 7dd00c3

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

schema.graphql

+6
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,12 @@ type SyncError {
15341534
reconciler: String!
15351535
}
15361536

1537+
type SynchronizationFailingError implements StateError {
1538+
detail: String!
1539+
level: ErrorLevel!
1540+
revision: String!
1541+
}
1542+
15371543
"""Team type."""
15381544
type Team {
15391545
"""The NAIS applications owned by the team."""

src/lib/AppErrorTypeToMessage.svelte

+12-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
... on InvalidNaisYamlError {
2626
detail
2727
}
28+
... on SynchronizationFailingError {
29+
detail
30+
}
2831
... on NewInstancesFailingError {
2932
failingInstances
3033
}
@@ -98,7 +101,15 @@
98101
{:else if $data.__typename === 'InvalidNaisYamlError'}
99102
<div class="wrapper">
100103
<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}
102113
</Alert>
103114
</div>
104115
{:else if $data.__typename === 'NewInstancesFailingError'}

0 commit comments

Comments
 (0)