Compare commits

...

2 Commits

Author SHA1 Message Date
cc62aabfe4 Merge branch 'main' of 10.10.10.63:LotusGuild/hwmonDaemon 2026-01-01 15:50:30 -05:00
546ef066f8 API Key Auth 2026-01-01 15:45:29 -05:00

View File

@@ -1198,7 +1198,10 @@ class SystemHealthMonitor:
response = requests.post( response = requests.post(
self.ticket_api_url, self.ticket_api_url,
json=ticket_payload, json=ticket_payload,
headers={'Content-Type': 'application/json'} headers = {
'Content-Type': 'application/json',
'Authorization': f'Bearer {self.CONFIG["TICKET_API_KEY"]}'
}
) )
response_data = response.json() response_data = response.json()