Merge "Change Murano Dashboard Limit for Memory and Instances"

This commit is contained in:
Jenkins 2017-01-17 00:44:04 +00:00 committed by Gerrit Code Review
commit 5bf240506e
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ from yaql.language import exceptions as yaql_exc
def _set_up_yaql():
legacy_engine_options = {
'yaql.limitIterators': 100,
'yaql.memoryQuota': 20000
'yaql.limitIterators': 10000,
'yaql.memoryQuota': 1000000
}
return yaql.YaqlFactory().create(options=legacy_engine_options)