From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 27/48] python3-circuitbreaker:Update to version 1.4.0 and to work with python-3.10.8 Date: Wed, 09 Nov 2022 19:57:13 +0100 Message-ID: <20221109185734.3920-27-adolf.belka@ipfire.org> In-Reply-To: <20221109185734.3920-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4963689559910543710==" List-Id: --===============4963689559910543710== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Updated from version 1.3.2 to 1.4.0 - Update of rootfile - Changelog 1.4.0 Latest The circuitbreaker project has been classified as "Critical Project" on PyPI= , meaning it belongs to the top 1% of all projects on PyPI based on the downl= oads over the last 6 months. We're working an important peace here =F0=9F=99= =82 Fallback Function By default, the circuit breaker will raise a CircuitBreaker exception when = the circuit is opened. You can instead specify a function to be called when t= he circuit is opened. This function can be specified with the fallback_functi= on parameter and will be called with the same parameters as the decorated fun= ction would be. Custom callable for handling exceptions The logic for handling thrown exceptions as failures can now be customized = by passing a callable. The callable will be passed the exception type and val= ue, and should return True if the exception should be treated as a failure. Monotonic clock Using the wall clock to measure durations is vulnerable to changes in the s= ystem clock causing misbehavior - a clock accidentally set far in the future = and later reset could result in the circuit breaker remaining open for a grea= t deal longer than expected. To solve this, a monotonic clock is now used for= timing open states. Circuitbreaker default name The circuitbreaker default names are now taken from __qualname__ if availab= le for more precise default naming. Fixes and tooling the project is now built on Github Action instead of Travis CI building for python 3.10 applied smaller flake8 fixes Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- config/rootfiles/packages/python3-circuitbreaker | 14 +++++++------- lfs/python3-circuitbreaker | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/config/rootfiles/packages/python3-circuitbreaker b/config/rootfi= les/packages/python3-circuitbreaker index 7c6d0f387..321e91d1c 100644 --- a/config/rootfiles/packages/python3-circuitbreaker +++ b/config/rootfiles/packages/python3-circuitbreaker @@ -1,8 +1,8 @@ -#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info -#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/PKG-I= NFO -#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/SOURC= ES.txt -#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/depen= dency_links.txt -#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/not-z= ip-safe -#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/requi= res.txt -#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/top_l= evel.txt +#usr/lib/python3.10/site-packages/circuitbreaker-1.4.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/circuitbreaker-1.4.0-py3.10.egg-info/PKG-I= NFO +#usr/lib/python3.10/site-packages/circuitbreaker-1.4.0-py3.10.egg-info/SOURC= ES.txt +#usr/lib/python3.10/site-packages/circuitbreaker-1.4.0-py3.10.egg-info/depen= dency_links.txt +#usr/lib/python3.10/site-packages/circuitbreaker-1.4.0-py3.10.egg-info/not-z= ip-safe +#usr/lib/python3.10/site-packages/circuitbreaker-1.4.0-py3.10.egg-info/requi= res.txt +#usr/lib/python3.10/site-packages/circuitbreaker-1.4.0-py3.10.egg-info/top_l= evel.txt usr/lib/python3.10/site-packages/circuitbreaker.py diff --git a/lfs/python3-circuitbreaker b/lfs/python3-circuitbreaker index b3a5e3c24..9c13e7bd2 100644 --- a/lfs/python3-circuitbreaker +++ b/lfs/python3-circuitbreaker @@ -24,7 +24,7 @@ =20 include Config =20 -VER =3D 1.3.2 +VER =3D 1.4.0 =20 THISAPP =3D circuitbreaker-$(VER) DL_FILE =3D $(THISAPP).tar.gz @@ -32,7 +32,7 @@ DL_FROM =3D $(URL_IPFIRE) DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) PROG =3D python3-circuitbreaker -PAK_VER =3D 1 +PAK_VER =3D 2 =20 ############################################################################= ### # Top-level Rules @@ -42,7 +42,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_BLAKE2 =3D f4283afbde8451a2b5e8286abbc8c8a1752fcc8236bdbdea9425d1= a6503fd7ccffef57f51e189a465f38b8be96135edf0bf9c697215508251c78db2e766e1394 +$(DL_FILE)_BLAKE2 =3D 86e9b00ba2736c565efac0a932bc8625a332393634970d90942fe3= 91750d15f890fad805aa95cd59a097312e7e927b909169776a4ba740998c5032b938f19d7f =20 install : $(TARGET) =20 --=20 2.38.1 --===============4963689559910543710==--