From dbe64e935204f819288182f28fecc77a4579b9c2 Mon Sep 17 00:00:00 2001 From: Michael van Rooijen Date: Fri, 18 Oct 2024 17:46:06 +0200 Subject: [PATCH] Release v1.0.3 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2385722..651bd60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.0.3 + +* Mitigate issue where measuring the Celery job queue size and job queue latency results in connection reset errors. If a connection is reset, the macro will attempt to reconnect and retry the operation up to 10 times over a span of 10 seconds before giving up. The ConnectionResetError typically resolves after the initial reconnection attempt, so this should help alleviate the issue. + ## v1.0.2 * Fix issue where Django's HttpResponse object doesn't accept the headers keyword argument. Headers are now applied to the response object directly. diff --git a/pyproject.toml b/pyproject.toml index 7c01062..4fb0663 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hirefire-resource" -version = "1.0.2" +version = "1.0.3" description = "HireFire integration library for Python applications" authors = ["Michael van Rooijen "] license = "MIT"