node-jira
node-jira copied to clipboard
.searchJira keeps returning 500
Hey all,
This may be a user error, but I keep running the following query but am getting "500: Unable to connect to JIRA during search"
Here is my call (as a gist -- https://gist.github.com/streetlight/7663097#file-gistfile1-txt):
jira.searchJira('project = TST AND issuetype in (Bug, "User Story") AND status ="Awaiting Release"', {}, function (err, issue) {
if (err) console.log(err);
console.log(issue);
});
The 'issue' comes back as undefined, and I get the error. Any idea what is going on? Is the query string valid?