mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	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>
This commit is contained in:
		
							parent
							
								
									eddf6a2319
								
							
						
					
					
						commit
						a0e91b5882
					
				
					 2 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -9,6 +9,8 @@
 | 
			
		|||
 | 
			
		||||
### Server
 | 
			
		||||
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
 | 
			
		||||
- Fix: 起動前の疎通チェックが機能しなくなっていた問題を修正  
 | 
			
		||||
  (Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/737)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## 2024.11.0
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -53,4 +53,4 @@ const promises = Array
 | 
			
		|||
		connectToPostgres()
 | 
			
		||||
	]);
 | 
			
		||||
 | 
			
		||||
await Promise.allSettled(promises);
 | 
			
		||||
await Promise.all(promises);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue