We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4732db5 commit 91cccd9Copy full SHA for 91cccd9
src/openstack_workload_generator/entities/helpers.py
@@ -90,8 +90,8 @@ def check_config(cls):
90
for quota_type in ["compute_quotas", "block_storage_quotas", "network_quotas"]:
91
if quota_type not in Config._config:
92
continue
93
- for key_name, value in Config._config[quota_type].keys():
94
- Config.quota(key_name, quota_type, 1)
+ for key_name in Config._config[quota_type].keys():
+ Config.quota(key_name, quota_type, 0)
95
96
@staticmethod
97
def show_effective_config():
0 commit comments