Skip to content

Commit

Permalink
Fix for infinite loop bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanKarab committed Jun 4, 2020
1 parent 3e499c7 commit 3bc9c89
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ public class AdpDBArtJobMonitor implements Runnable {
private static final Logger log = Logger.getLogger(AdpDBArtJobMonitor.class);
private static final int statsUpdateSecs =
AdpDBProperties.getAdpDBProps().getInt("db.client.statisticsUpdate_sec");
private static int statsOldOP = 0;
private static int statsOldDT = 0;
private static int statsOldER = 0;
private int statsOldOP = 0;
private int statsOldDT = 0;
private int statsOldER = 0;

private final ExecutionEngineSessionPlan sessionPlan;
private final AdpDBStatus status;
Expand Down

0 comments on commit 3bc9c89

Please sign in to comment.