-
-
Notifications
You must be signed in to change notification settings - Fork 380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Nestjs][ExpressAdapter][Bull] HttpAdapterHost isn't available in the BullBoardRootModule context as per #590 #690
Comments
@russosalv thanks for reporting this! Can you give me the following list with the versions you're using?
Cheers! |
i register BullBoardModule in the app.module.ts import {SapRfcModule} from "./modules/saprfc/saprfc.module";
import {BullBoardModule} from "@bull-board/nestjs";
import {ExpressAdapter} from "@bull-board/express";
@Module({
imports: [
ConfigModule.forRoot(),
BullModule.forRoot({
redis: {
host: process.env.REDIS_HOST ?? 'localhost',
port: process.env.REDIS_PORT ? Number(process.env.REDIS_PORT) : 6379,
},
}),
ScheduleModule.forRoot(),
EventEmitterModule.forRoot(),
AuthModule,
DeveloperModule,
GetterJobModule,
SetterJobModule,
AuxiliaryJobModule,
WebsocketClientModule,
SapRfcModule,
DbConfigModule,
BullBoardModule.forRoot({
route: '/queues',
adapter: ExpressAdapter
}),
],
controllers: [],
providers: [
{
provide: APP_INTERCEPTOR,
useClass: ApplicationInsightInterceptor,
},
ApplicationInsightLogger,
ApplicationInsightUtils,
PrismaService,
RedisService,
SapSyncProcessConfigUtils,
ConfigService,
],
})
export class AppModule {} versions are: "dependencies": {
"@bull-board/api": "^5.14.1",
"@bull-board/express": "^5.14.1",
"@bull-board/nestjs": "^5.14.1",
"@nestjs/bull": "^10.0.1",
"@nestjs/common": "^10.2.7",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.7",
"@nestjs/event-emitter": "^2.0.2",
"@nestjs/platform-express": "^10.2.7",
"@nestjs/schedule": "^3.0.4",
"@nestjs/swagger": "^7.1.13",
"applicationinsights": "^2.8.0",
"axios": "^1.5.1",
"bull": "^4.7.0",
"cronstrue": "^1.125.0",
"decimal.js": "^10.4.3",
"easy-soap-request": "^4.6.0",
"fast-xml-parser": "^4.0.2",
"keycloak-connect": "^15.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"nest-keycloak-connect": "^1.7.6",
"nestjs-sap-rfc": "^3.0.33",
"prisma-query-log": "^3.2.0",
"redis": "^4.0.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"socket.io-client": "^4.4.1",
"string-hash": "^1.1.3",
"swagger-ui-express": "^5.0.0",
"uuid": "^8.3.2"
}
|
Any Update for that? |
Did you checked examples folder, it works there... Unfortunately, I'm not so familiar with Nest.js, so I can't help you |
+1 |
i think that the issue is related to yarn version and node version |
@russosalv can you confirm that #704 solves this issue? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
i have same error as per #590
Nest can't resolve dependencies of the BullBoardRootModule (?, bull_board_adapter, bull_board_options). Please make sure that the argument HttpAdapterHost at index [0] is available in the BullBoardRootModule context.
but i have this main.ts
The text was updated successfully, but these errors were encountered: