Description
Hello.
I try to use this library and I met some issue.
I want to retrieve all builds for job and I write:
List<Build> builds = jenkinsServer.getJob(jobName).getAllBuilds();
This method always returns null.
Method getAllBuilds(Range range)
returns null too, but I see warning about this in documentation.
Only method getBuilds()
works correctly.
In documentation for getAllBuilds()
method there is no information about problems with it.
I found that null returns in catch (HttpResponseException e)
block in getAllBuilds()
:
catch (HttpResponseException e) {
// TODO: Thinks about a better handline if the job does not exist?
if (e.getStatusCode() == HttpStatus.SC_NOT_FOUND) {
// TODO: Check this if this is necessary or a good idea?
return null;
}
throw e;
}
So, I want to ask, is this only my problem, or not? Has anyone been getting this issue?
And how I can fix it or circumvent it?
Maybe you already know about this problem and plan to solve it? Then, perhaps, you can tell how quickly this problem will be solved.
Hope for answer. Thanks in advance.