Revert "IMPALA-6759: align stress test memory estimation parse pattern"

This reverts commit 2521848753.
This commit is contained in:
Michael Brown
2018-03-28 15:28:48 -07:00
parent 2521848753
commit 2c0926e2de
3 changed files with 3 additions and 9 deletions

View File

@@ -65,8 +65,6 @@ def parse_mem_to_mb(mem, units):
mem *= 10 ** 3
elif units == "T":
mem *= 10 ** 6
elif units == "P":
mem *= 10 ** 9
else:
raise Exception('Unexpected memory unit "%s"' % units)
return int(mem)