diff --git a/CHANGELOG.md b/CHANGELOG.md index 538fc7b7..f27e8781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,54 @@ # Change Log All notable changes to this project will be documented in this file. +## 1.5.1 - 2023-11-16 + +### Breaking Changes: + +- No Change. + +### New features: + +- No Change. + +### Bug fixes: + +- Sped up list actors endpoints with better db call +- Removing some old code +- Better deployer +- t initialization hardened to startup issues + + +## 1.5.0 - 2023-10-24 + +### Breaking Changes: + +- No Change. + +### New features: + +- No Change. + +### Bug fixes: + +- No Change. + + +## 1.4.0 - 2023-07-06 + +### Breaking Changes: + +- No Change. + +### New features: + +- No Change. + +### Bug fixes: + +- No Change. + + ## 1.3.1 - 2023-06-06 ### Breaking Changes: diff --git a/actors/stores.py b/actors/stores.py index 55d98298..7efd8a4a 100644 --- a/actors/stores.py +++ b/actors/stores.py @@ -232,6 +232,9 @@ def mongo_initialization(): time.sleep(3) try: + ### This is legacy code. By setting hostname on the k8 pod object the hostname won't change + ### between restarts. So this is no longer needed. But I'm keeping it here for now. + # # Get the pod hostname (full) for Mongo K8. We have to set the replica set primary host with # this, as there's a chance the conf is still pointing at a dead node if you burned down/up # This also works for Docker, but it's neccessary for K8.