Use correct default for bandwith

This commit is contained in:
rallytime 2015-09-25 12:50:13 -06:00
parent 42d8127f79
commit de2f9234d3

View file

@ -456,9 +456,9 @@ def create(vm_):
)
kwargs['prices'].append({'id': port_speed})
# Default is 248 (5000 GB Bandwidth)
# Default is 1800 (0 GB Bandwidth)
bandwidth = config.get_cloud_config_value(
'bandwidth', vm_, __opts__, default=248
'bandwidth', vm_, __opts__, default=1800
)
kwargs['prices'].append({'id': bandwidth})