From f2c365fcb1fc22877656398b94b3ff70f25779e5 Mon Sep 17 00:00:00 2001 From: volkansahin Date: Wed, 19 Jul 2017 12:08:38 +0300 Subject: [PATCH] minor bug fix --- opt/ahenk/base/execution/execution_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opt/ahenk/base/execution/execution_manager.py b/opt/ahenk/base/execution/execution_manager.py index 4f36816..e30ee6f 100644 --- a/opt/ahenk/base/execution/execution_manager.py +++ b/opt/ahenk/base/execution/execution_manager.py @@ -315,7 +315,7 @@ class ExecutionManager(object): def check_expiration(self, expiration): current_timestamp = int(time.time()) * 1000 - if expiration.lower() =='none': + if str(expiration) =='None': return True elif int(expiration) > current_timestamp: return True