Skip to content

Commit ae22322

Browse files
Fix BUG: Windows build does not open on the first try.
1 parent 4043751 commit ae22322

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/OnboardingSteps/ServerCheck.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const ServerCheck: React.FC<ServerCheckProps> = ({ stepIndex }) => {
2222
} = usePictoQuery({
2323
queryKey: ['clusters'],
2424
queryFn: getMainBackendHealthStatus,
25-
retry: 10,
25+
retry: 60,
2626
retryDelay: 1000,
2727
});
2828
const {
@@ -32,7 +32,7 @@ export const ServerCheck: React.FC<ServerCheckProps> = ({ stepIndex }) => {
3232
} = usePictoQuery({
3333
queryKey: ['syncMicroservice'],
3434
queryFn: getSyncMicroserviceHealthStatus,
35-
retry: 10,
35+
retry: 60,
3636
retryDelay: 1000,
3737
});
3838
useEffect(() => {

0 commit comments

Comments
 (0)