Skip to content

Commit 91cccd9

Browse files
committed
fix loop
Signed-off-by: Marc Schöchlin <[email protected]>
1 parent 4732db5 commit 91cccd9

File tree

1 file changed

+2
-2
lines changed
  • src/openstack_workload_generator/entities

1 file changed

+2
-2
lines changed

src/openstack_workload_generator/entities/helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ def check_config(cls):
9090
for quota_type in ["compute_quotas", "block_storage_quotas", "network_quotas"]:
9191
if quota_type not in Config._config:
9292
continue
93-
for key_name, value in Config._config[quota_type].keys():
94-
Config.quota(key_name, quota_type, 1)
93+
for key_name in Config._config[quota_type].keys():
94+
Config.quota(key_name, quota_type, 0)
9595

9696
@staticmethod
9797
def show_effective_config():

0 commit comments

Comments
 (0)