Skip to content

Commit

Permalink
fix(core): Fix auth propagation from manual judgment stages (#2013)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajordens authored and asher committed Feb 22, 2018
1 parent 2b6f0ca commit 01fa141
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,9 @@ protected Execution buildExecution(@Nonnull Execution execution, @Nonnull Map<St
} else {
stage.setTasks(emptyList());
}
if (map.get(prefix + "lastModified") != null) {
stage.setLastModified(mapper.readValue(map.get(prefix + "lastModified"), Stage.LastModifiedDetails.class));
}
stage.setExecution(execution);
execution.getStages().add(stage);
} catch (IOException e) {
Expand Down

0 comments on commit 01fa141

Please sign in to comment.