Commit 95ba5dc5 authored by Łukasz Nowak's avatar Łukasz Nowak

Cache size is integer in template.

parent 6280b10e
......@@ -96,7 +96,7 @@ class Recipe(GenericBaseRecipe):
products=self.options['products'],
thread_amount=self.options['thread-amount'],
zodb_root_path=self.options['zodb-path'],
zodb_cache_size=self.options['zodb-cache-size'],
zodb_cache_size=int(self.options['zodb-cache-size']),
)
zope_environment = dict(
TMP=self.options['tmp-path'],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment