Merge "Increase yaql quotas"

This commit is contained in:
Jenkins 2016-08-31 12:20:34 +00:00 committed by Gerrit Code Review
commit 44fee4751b
1 changed files with 3 additions and 2 deletions

View File

@ -20,8 +20,9 @@ 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)
YAQL = _set_up_yaql()