1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-11-25 09:28:38 -05:00

Compare commits

..

No commits in common. "29a60b7ed04a29de00d32e66ca42f4b204238389" and "764730c123e020235615b4be8ab1d26b43fc96be" have entirely different histories.

2 changed files with 5 additions and 11 deletions

View File

@ -1,15 +1,6 @@
CHANGES
=======
v2.5.8
------
* Removed debug code
* Updated list-plugins
* Renamed virtualenv dir to .aprsd-venv
* Added unit tests for dev test-plugin
* Send Message command defaults to config
v2.5.7
------

View File

@ -47,7 +47,6 @@ def healthcheck(ctx, health_url, timeout):
console.log(f"APRSD HealthCheck version: {aprsd.__version__}")
with console.status(f"APRSD HealthCheck version: {aprsd.__version__}") as status:
try:
status.update(f"Contacting APRSD on {health_url}")
url = health_url
response = requests.get(url, timeout=timeout)
response.raise_for_status()
@ -55,7 +54,11 @@ def healthcheck(ctx, health_url, timeout):
console.log(f"Failed to fetch healthcheck url '{url}' : '{ex}'")
sys.exit(-1)
else:
status.update("Contacted APRSD. Parsing results.")
import time
time.sleep(2)
status.update("PISS")
time.sleep(2)
stats = json.loads(response.text)
email_thread_last_update = stats["stats"]["email"]["thread_last_update"]