Skip to content

Commit 4e40a6d

Browse files
committed
Make FlowCause derive from UpstreamCause to surface greater discoverability of build provenance
1 parent f332e7b commit 4e40a6d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/com/cloudbees/plugins/flow/FlowCause.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* @author: <a hef="mailto:[email protected]">Nicolas De Loof</a>
3333
*/
34-
public class FlowCause extends Cause {
34+
public class FlowCause extends Cause.UpstreamCause {
3535

3636
private transient FlowRun flowRun;
3737

@@ -40,12 +40,15 @@ public class FlowCause extends Cause {
4040
private final String cause;
4141

4242
public FlowCause(FlowRun flowRun, JobInvocation associatedJob) {
43+
super(flowRun);
4344
this.flowRun = flowRun;
4445
this.cause = flowRun.getParent().getFullName() + "#" + flowRun.getNumber();
4546
this.associatedJob = associatedJob;
4647
}
4748

4849
public FlowRun getFlowRun() {
50+
// TODO(mattmoor): If we upgrade to 1.505+ we can replace usage
51+
// of this with UpstreamCause#getUpstreamRun().
4952
if (this.flowRun == null) {
5053
int i = cause.lastIndexOf('#');
5154
BuildFlow flow = Jenkins.getInstance().getItemByFullName(cause.substring(0,i), BuildFlow.class);

0 commit comments

Comments
 (0)