Skip to content

Commit

Permalink
Version [2.8.1]
Browse files Browse the repository at this point in the history
  • Loading branch information
I-am-PUID-0 committed Aug 9, 2024
1 parent ca1a560 commit b9f0586
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## Version [2.8.1] - 2024-08-09 🚀

## Fixed 🐛

- healthcheck: Fixed healthcheck for zurg w/ armv7 🛠️


## Version [2.8.0] - 2024-08-09 🚀

### Changed 🔄
Expand Down
4 changes: 2 additions & 2 deletions healthcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ def check_processes(process_info):

process_info = {
"zurg_rd": {
"regex": re.compile(rf'/zurg/RD/zurg.*--preload', re.IGNORECASE),
"regex": re.compile(rf'/zurg/RD/zurg', re.IGNORECASE),
"error_message": "The Zurg RD process is not running.",
"should_run": str(ZURG).lower() == 'true' and RDAPIKEY
},
"zurg_ad": {
"regex": re.compile(rf'/zurg/AD/zurg.*--preload', re.IGNORECASE),
"regex": re.compile(rf'/zurg/AD/zurg', re.IGNORECASE),
"error_message": "The Zurg AD process is not running.",
"should_run": str(ZURG).lower() == 'true' and ADAPIKEY
},
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def shutdown(signum, frame):
def main():
logger = get_logger()

version = '2.8.0'
version = '2.8.1'

ascii_art = f'''
Expand Down

0 comments on commit b9f0586

Please sign in to comment.