Commit 00cce7ce by s_guodong

init返回false不往下执行

parent 76824080
...@@ -319,8 +319,8 @@ public abstract class AbstractRuleEmitter implements IRuleEmitter { ...@@ -319,8 +319,8 @@ public abstract class AbstractRuleEmitter implements IRuleEmitter {
Boolean result = executeInit(-1); Boolean result = executeInit(-1);
return result; return result;
} catch (RuleExitException e) { } catch (RuleExitException e) {
e.printStackTrace(); throw new RuleExecuteException("Init执行返回false", e);
return false; // return false;
} catch (Exception ex) { } catch (Exception ex) {
DCR.emptyDefaultQueue(); DCR.emptyDefaultQueue();
List<String> rows = MdaEnv.getAuthInfo().getSysStream().getRows(); List<String> rows = MdaEnv.getAuthInfo().getSysStream().getRows();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment