Bug: reset opposite size param if other is set (#153)

Fix #127
This commit is contained in:
Jacob Freck 2017-10-09 09:17:26 -07:00 коммит произвёл GitHub
Родитель a2755e3574
Коммит cadc2855f3
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -165,9 +165,11 @@ class ClusterConfig:
if config.get('size') is not None:
self.size = config['size']
self.size_low_pri = 0
if config.get('size_low_pri') is not None:
self.size_low_pri = config['size_low_pri']
self.size = 0
if config.get('username') is not None:
self.username = config['username']