Skip to content

Commit a0e91b5

Browse files
fix(backend): 起動前の疎通チェックが機能しなくなっていた問題を修正 (#15043)
* check harder for connectibility `allSettled` does not throw if a promise is rejected, so `check_connect` never actually failed * Update Changelog --------- Co-authored-by: dakkar <dakkar@thenautilus.net>
1 parent eddf6a2 commit a0e91b5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
### Server
1111
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
12+
- Fix: 起動前の疎通チェックが機能しなくなっていた問題を修正
13+
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/737)
1214

1315

1416
## 2024.11.0

packages/backend/scripts/check_connect.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ const promises = Array
5353
connectToPostgres()
5454
]);
5555

56-
await Promise.allSettled(promises);
56+
await Promise.all(promises);

0 commit comments

Comments
 (0)