Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
klhftco committed Nov 5, 2024
1 parent d024036 commit 0f86b37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions apps/frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ const client = new ApolloClient({
});

export default function App() {
setTimeout(() => {
throw new Error("Intentional runtime error");
}, 1000);

return (
<ApolloProvider client={client}>
<ThemeProvider>
Expand Down
4 changes: 2 additions & 2 deletions infra/app/templates/backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ spec:
value: "_"
readinessProbe:
httpGet:
path: "/api/graphql"
# port: {{ .Values.backend.port }}
path: "http://localhost:5001/api/graphql"
port: {{ .Values.backend.port }}
initialDelaySeconds: 5
periodSeconds: 5
# timeoutSeconds: 2
Expand Down

0 comments on commit 0f86b37

Please sign in to comment.