-
-
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
Jobs not showing up using latest 6.7.1 with Nest.js #883
Comments
Probably related to something that changed in that major version... |
Enabling the extended query parser doesn't resolve the issue. https://docs.nestjs.com/migration-guide#query-parameters-parsing EDIT: app.use((request: Request, response: Response, next: NextFunction) => {
console.log(request.path, request.query);
... Logs:
|
It was working yesterday, I just update my dependencies and I have now the same issue, jobs not showing. |
Yeah I have same issue as well, most likely related to nestjs 11 uses express 5 |
Someone can create a small repo that replicates this issue? |
@pboutin I know this may sound strange, believe me, I spent hours trying to debug this. I set up a minimal repo and the issue was not there. I'm using Nest Workspaces so I thought it was something related to that. The only difference between my repo and the minimal repo was the package manager - NPM on the minimal and Yarn on the bugged one. From what I could see (by adding logs on Also, make sure to add |
@jsfrocha we do have express 5 as an optional dep |
This doesn't seem to help as
The only thing which helps so far is overriding the express version in the |
Explicitly installing express v5 fixes my issue 👍 |
After updating our app with Nest.js v11 and the latest version of bull-board, the jobs don't show up anymore. We only see the counts.
Our versions
Checking the network tab for the API response shows
jobs: []
.Screenshot of the board
The text was updated successfully, but these errors were encountered: