From b40fc6ba40c38309b10285854b5d752a598d5a80 Mon Sep 17 00:00:00 2001 From: Christian Garcia Date: Tue, 2 Jul 2024 01:22:02 +0000 Subject: [PATCH 1/2] Update health.py --- actors/health.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/actors/health.py b/actors/health.py index 959c9a1..7b492bb 100644 --- a/actors/health.py +++ b/actors/health.py @@ -312,7 +312,10 @@ def check_containers(): worker_records = workers_store[site()].items() worker_ids_in_db = [] for worker in worker_records: - worker_ids_in_db.append(worker['id'].lower()) + try: + worker_ids_in_db.append(worker['id'].lower()) + except Exception as e: + logger.info(f"worker did not have 'id' field: worker: {worker.dict()}") logger.info(f"check_containers(). List of all worker_ids found in db: {worker_ids_in_db}") worker_containers = get_current_worker_containers() From 56ed83f79aaf979ea3c80028612a3db7db46d664 Mon Sep 17 00:00:00 2001 From: Christian Garcia Date: Sat, 14 Sep 2024 06:46:34 +0000 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f27e878..6b2686c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,32 @@ # Change Log All notable changes to this project will be documented in this file. +## 1.7.0 - 2024-09-13 + +New Release + +### New features: + +- No Change. + +### Bug fixes: + +- Small health fixes. + +## 1.6.0 - 2024-01-24 + +### Breaking Changes: + +- No Change. + +### New features: + +- No Change. + +### Bug fixes: + +- No Change + ## 1.5.1 - 2023-11-16 ### Breaking Changes: