Add queue timeout (#7519)
This commit is contained in:
		
							parent
							
								
									961b3177d5
								
							
						
					
					
						commit
						4b33c42da7
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		|  | @ -71,6 +71,7 @@ export function deliver(user: ThinUser, content: unknown, to: string | null) { | |||
| 
 | ||||
| 	return deliverQueue.add(data, { | ||||
| 		attempts: config.deliverJobMaxAttempts || 12, | ||||
| 		timeout: 1 * 60 * 1000,	// 1min
 | ||||
| 		backoff: { | ||||
| 			type: 'exponential', | ||||
| 			delay: 60 * 1000 | ||||
|  | @ -88,6 +89,7 @@ export function inbox(activity: IActivity, signature: httpSignature.IParsedSigna | |||
| 
 | ||||
| 	return inboxQueue.add(data, { | ||||
| 		attempts: config.inboxJobMaxAttempts || 8, | ||||
| 		timeout: 5 * 60 * 1000,	// 5min
 | ||||
| 		backoff: { | ||||
| 			type: 'exponential', | ||||
| 			delay: 60 * 1000 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue