Details
-
Sub-task
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
There are only two cubing engines before. So, there are some code snippet like this :
String specifiedEngineType = System.getProperty("engineType"); if (StringUtils.isNotEmpty(specifiedEngineType)) { engineType = Integer.parseInt(specifiedEngineType); } else { engineType = 2; }
Since we have provided the third cubing flink engine, the code snippet above would cause wrong value. This issue used to track this problem and fix it.