From 0b3bf4a65471fe9c0938f3822e4c40978d01f1a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Fri, 7 Mar 2025 08:51:06 +0100 Subject: [PATCH] fix in deploy --- app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index db1985f..5b15972 100644 --- a/app.py +++ b/app.py @@ -1182,7 +1182,7 @@ def deploy_user(user_id): wrapped_content = wrap_content_with_comments(adjusted_content) url = h.daemon_url.rstrip('/') + '/hosts' headers = {"Authorization": h.daemon_token} - resp = requests.post(url, json={"hosts": wrapped_content}, headers=headers, timeout=10) + resp = requests.post(url, json={"hosts": wrapped_content}, headers=headers, timeout=10, verify=False) if resp.status_code != 200: raise Exception(f"Daemon POST error: {resp.status_code} - {resp.text}") @@ -1212,6 +1212,8 @@ def deploy_user(user_id): except Exception as e: db.session.add(DeployLog( details=f'Failed to update {h.hostname}: {str(e)} for user {user_id}' + user_id=user_id + )) db.session.commit() @@ -1295,6 +1297,7 @@ def dashboard(): stats = get_statistics(user_id) for log in logs: log.details = log.details.replace(f" for user {user_id}", "") + #pass return render_template('dashboard.html', user=user, logs=logs, stats=stats)