use exist_ok for os.makedirs at startup

This commit is contained in:
simon 2022-10-29 15:52:33 +07:00
parent 1fbd603374
commit c392563ef8
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 1 additions and 4 deletions

View File

@ -63,10 +63,7 @@ class StartupCheck:
cache_dir = self.config_handler.config["application"]["cache_dir"]
for folder in folders:
folder_path = os.path.join(cache_dir, folder)
try:
os.makedirs(folder_path)
except FileExistsError:
continue
os.makedirs(folder_path, exist_ok=True)
def release_lock(self):
"""make sure there are no leftover locks set in redis"""