jenkinsci / jenkinsci/java-client-api

JobWithDetails - getAllBuils() method

Offen
#370 3 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
question
Vorherrschende Sprache
Java
Sterne
913
Forks
466
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

Hello.
I try to use this library and I met some issue.

I want to retrieve all builds for job and I write:

`List 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.

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.