You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.../node_modules/bluebird/js/release/debuggability.js:868 Unhandled rejection StatusCodeError: 400 - {"errorMessages":["No project could be found with key ''."],"errors":{}}
I found the problem in node-jira-client, it's on getAllBoards method. When there is no projectKeyOrId in argument, param is passed in query string as empty. So Jira try to filter on an empty project name :
In the case where I really want to get all board (whithout filtering on project key), I need to remove projectKeyOrId key in query object. And it works.
The text was updated successfully, but these errors were encountered:
Hello,
I have an error on getAllBoards() method.
This is my code :
The error is :
I found the problem in node-jira-client, it's on getAllBoards method. When there is no projectKeyOrId in argument, param is passed in query string as empty. So Jira try to filter on an empty project name :
In the case where I really want to get all board (whithout filtering on project key), I need to remove projectKeyOrId key in query object. And it works.
The text was updated successfully, but these errors were encountered: