Incorrect yaql engine was used for MuranoPL/1.0

Change-Id: I46ceeb9190f82a26b9cb8cdced1e4bc205e3bc5a
Closes-Bug: #1504336
This commit is contained in:
Stan Lagun 2015-10-09 17:01:35 +03:00
parent 3f60874318
commit 42b5019ff8
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def create_context(runtime_version):
def choose_yaql_engine(runtime_version):
return (ENGINE_10 if runtime_version < constants.RUNTIME_VERSION_1_0
return (ENGINE_10 if runtime_version <= constants.RUNTIME_VERSION_1_0
else ENGINE_20)