commit | 6d0a7b0c2095f83284b484e018f8899407ce17cc | [log] [tgz] |
---|---|---|
author | Chetan Gaonker <chetang@calsoftlabs.com> | Tue May 03 16:57:28 2016 -0700 |
committer | Chetan Gaonker <chetang@calsoftlabs.com> | Tue May 03 16:57:28 2016 -0700 |
tree | dd4405672e7a045835c624b73ab1239ae09e56de | |
parent | 462d9fa2746e6e53885b463ca86dc147cb8613c4 [diff] |
Restrict max JVM heap size to 16
diff --git a/src/test/utils/CordContainer.py b/src/test/utils/CordContainer.py index 214239f..0628f9f 100644 --- a/src/test/utils/CordContainer.py +++ b/src/test/utils/CordContainer.py
@@ -171,6 +171,7 @@ mem += int(m.split(':')[1].strip().split()[0]) mem = max(mem/1024/1024, 1) + mem = min(mem, 16) return str(mem) + 'G' class Onos(Container):