fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 14s
Deploy Dev / Push (pull_request) Successful in 15s
Deploy Dev / prepare (pull_request) Successful in 4s
Deploy Dev / Deploy dev (pull_request) Successful in 21s

This commit is contained in:
Egor Matveev 2025-06-10 00:41:27 +03:00
parent f7a1e39c98
commit 79b8240592

View File

@ -3,6 +3,7 @@ import os
from minio import Minio
def main():
minio_client = Minio(
"minio.develop.sprinthub.ru:9000",
access_key="serviceminioadmin",
@ -50,3 +51,9 @@ for host, params in hosts.items():
with open('/etc/nginx/hosts.conf', 'w') as fp:
fp.write(config)
try:
main()
except Exception as e:
print(e)