Skip to content
This repository has been archived by the owner on Mar 12, 2019. It is now read-only.

Commit

Permalink
Do not reset config time during running
Browse files Browse the repository at this point in the history
  • Loading branch information
kakwok committed Jun 21, 2018
1 parent bc88557 commit 3d1e0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rcms/fm/app/level1/HCALEventHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -1781,7 +1781,7 @@ public void run() {
catch (Exception ignore) { return; }

// initialize the configuration timer
if ((functionManager != null) && (functionManager.isDestroyed() == false) && (functionManager.getState().getStateString().equals(HCALStates.HALTED.toString()) || functionManager.getState().getStateString().equals(HCALStates.RUNNING.toString()))) {
if ((functionManager != null) && (functionManager.isDestroyed() == false) && (functionManager.getState().getStateString().equals(HCALStates.HALTED.toString()) )) {
elapsedseconds = 0;
}

Expand Down

0 comments on commit 3d1e0b5

Please sign in to comment.