Skip to content

Commit

Permalink
fix(travis): Fix a code path that didn't fetch logs when it should (#259
Browse files Browse the repository at this point in the history
)

Regression introduced in #239
  • Loading branch information
jervi authored and gardleopard committed Apr 9, 2018
1 parent d28e155 commit c23f73a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public GenericBuild getGenericBuild(final String inputRepoSlug, final int buildN
return new SimpleJava8HystrixCommand<>(groupKey, buildCommandKey("getGenericBuild"), () -> {
String repoSlug = cleanRepoSlug(inputRepoSlug);
Build build = getBuild(repoSlug, buildNumber);
return getGenericBuild(build, repoSlug);
return getGenericBuild(build, repoSlug, true);
}).execute();
}

Expand Down

0 comments on commit c23f73a

Please sign in to comment.