Skip to content

Commit

Permalink
#416 try to fix: refresher exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Marcek committed Jun 16, 2015
1 parent c65a6ae commit 8229c0b
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,9 +343,13 @@ public void setExecution(PipelineExecution execution, DPUInstanceRecord instance
}

private void setExecution(PipelineExecution execution, DPUInstanceRecord instance, boolean checkRedundancy) {
if (execution == null) {
return;
}

if (checkRedundancy) {
if (execution == null || (execution.equals(this.pipelineExec)
&& (instance == null || instance.equals(this.debugDpu)))) {
if (execution.equals(this.pipelineExec)
&& (instance == null || instance.equals(this.debugDpu))) {
//Already set
return;
}
Expand Down

2 comments on commit 8229c0b

@tomas-knap
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Jan-Marcek: Try to fix - So was it fixed?

@skrchnavy
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is fixed only based on code inspection so we will see if it is fixed or will occur again. for now we closed

Please sign in to comment.