Skip to content

Commit

Permalink
CONJ-525 Set exception has happened to false
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr_Ierenkov authored and Oleksandr_Ierenkov committed Sep 20, 2017
1 parent 338397b commit 755d162
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void addErrorStat() {
*/
@Override
public void clearErrorStat() {
hasException = true;
hasException = false;
this.updateCounts.remove((long) Statement.EXECUTE_FAILED);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void addErrorStat() {
*/
@Override
public void clearErrorStat() {
hasException = true;
hasException = false;
this.updateCounts.remove((long) Statement.EXECUTE_FAILED);
}

Expand Down

0 comments on commit 755d162

Please sign in to comment.