Merge "Incorrect yaql engine was used for MuranoPL/1.0"

This commit is contained in:
Jenkins 2015-10-09 16:49:00 +00:00 committed by Gerrit Code Review
commit bcc56b103a

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)