Merge branch 'master' of git.hjp.at:hjp/ltsdb

This commit is contained in:
Peter J. Holzer 2022-09-04 17:59:09 +02:00
commit 45d758d84a
1 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import hmac
import json
import os
import pprint
import random
import socket
import time
@ -47,6 +48,8 @@ def report_loadavg():
pprint.pp(report)
r = requests.post(baseurl + "report", json=report)
print(r)
if r.status_code != 409:
return
time.sleep(0.5 + random.random())
report_loadavg()