mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Use BullMQAdapter (#11367)
This commit is contained in:
		
							parent
							
								
									8851e90316
								
							
						
					
					
						commit
						ac6a8edf0b
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -3,7 +3,7 @@ import { dirname } from 'node:path';
 | 
				
			||||||
import { fileURLToPath } from 'node:url';
 | 
					import { fileURLToPath } from 'node:url';
 | 
				
			||||||
import { Inject, Injectable } from '@nestjs/common';
 | 
					import { Inject, Injectable } from '@nestjs/common';
 | 
				
			||||||
import { createBullBoard } from '@bull-board/api';
 | 
					import { createBullBoard } from '@bull-board/api';
 | 
				
			||||||
import { BullAdapter } from '@bull-board/api/bullAdapter.js';
 | 
					import { BullMQAdapter } from '@bull-board/api/bullMQAdapter.js';
 | 
				
			||||||
import { FastifyAdapter } from '@bull-board/fastify';
 | 
					import { FastifyAdapter } from '@bull-board/fastify';
 | 
				
			||||||
import ms from 'ms';
 | 
					import ms from 'ms';
 | 
				
			||||||
import sharp from 'sharp';
 | 
					import sharp from 'sharp';
 | 
				
			||||||
| 
						 | 
					@ -168,7 +168,7 @@ export class ClientServerService {
 | 
				
			||||||
				this.dbQueue,
 | 
									this.dbQueue,
 | 
				
			||||||
				this.objectStorageQueue,
 | 
									this.objectStorageQueue,
 | 
				
			||||||
				this.webhookDeliverQueue,
 | 
									this.webhookDeliverQueue,
 | 
				
			||||||
			].map(q => new BullAdapter(q)),
 | 
								].map(q => new BullMQAdapter(q)),
 | 
				
			||||||
			serverAdapter,
 | 
								serverAdapter,
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue