1
0
Fork 0

Merge pull request #19 from vbmacher/master

Fixed query for retrieving list of sprints
master
Bob Carroll 2013-11-05 13:24:36 -08:00
commit ce22bf110c
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public class RapidView extends GreenHopperResource {
try {
System.out.println(getId());
result = restclient.get(RESOURCE_URI + "sprints/" + id);
result = restclient.get(RESOURCE_URI + "sprintquery/" + id);
} catch (Exception ex) {
throw new JiraException("Failed to retrieve sprints", ex);
}