do not execute timeout event if script is already disabled
This commit is contained in:
parent
a757515885
commit
09d804b5e5
1 changed files with 4 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: LogScriptEngine.java,v 1.24 2010/10/12 10:57:22 fros4943 Exp $
|
* $Id: LogScriptEngine.java,v 1.25 2010/11/10 13:05:18 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja.plugins;
|
package se.sics.cooja.plugins;
|
||||||
|
@ -441,6 +441,9 @@ public class LogScriptEngine {
|
||||||
|
|
||||||
private TimeEvent timeoutEvent = new TimeEvent(0) {
|
private TimeEvent timeoutEvent = new TimeEvent(0) {
|
||||||
public void execute(long t) {
|
public void execute(long t) {
|
||||||
|
if (!scriptActive) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
logger.info("Timeout event @ " + t);
|
logger.info("Timeout event @ " + t);
|
||||||
engine.put("TIMEOUT", true);
|
engine.put("TIMEOUT", true);
|
||||||
stepScript();
|
stepScript();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue