node-jira icon indicating copy to clipboard operation
node-jira copied to clipboard

.searchJira keeps returning 500

Open PunkChameleon opened this issue 12 years ago • 0 comments

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?

PunkChameleon avatar Nov 26 '13 18:11 PunkChameleon