Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@

if (this.run instanceof WorkflowRun) {
FlowExecution execution = ((WorkflowRun) this.run).getExecution();
if (execution == null) {

Check warning on line 104 in src/main/java/io/jenkins/plugins/explain_error/PipelineLogExtractor.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Partially covered line

Line 104 is only partially covered, one branch is missing
setUrl("0");
return run.getLog(maxLines);

Check warning on line 106 in src/main/java/io/jenkins/plugins/explain_error/PipelineLogExtractor.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered lines

Lines 105-106 are not covered by tests
}

FlowGraphWalker walker = new FlowGraphWalker(execution);
for (FlowNode node : walker) {
Expand Down
Loading