fix memory check

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-08-09 21:54:04 -04:00
parent 61c14f48b4
commit 10cce6eb7c
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 3 additions and 2 deletions

View File

@ -2,5 +2,6 @@
- name: Verify memory and cache sizes
assert:
that:
- cont_mem_limit > geth_cache
fail_msg: 'Memory limit cant be lower than cache'
- cont_mem_limit < geth_cache
fail_msg: 'Memory limit cant be lower than cache: {{ cont_mem_limit }} > {{ geth_cache }}'
success_msg: 'Memory limit is higher than cache size'