check harder for connectibility

`allSettled` does not throw if a promise is rejected, so
`check_connect` never actually failed
This commit is contained in:
dakkar 2024-11-05 14:21:58 +00:00 committed by kakkokari-gtyih
parent 04b221409c
commit bfcc1fc3aa
1 changed files with 1 additions and 1 deletions

View File

@ -53,4 +53,4 @@ const promises = Array
connectToPostgres()
]);
await Promise.allSettled(promises);
await Promise.all(promises);