From da7ee110c8858f3a5c835544f5921a8d7ece303b Mon Sep 17 00:00:00 2001 From: Sameeran Kunche Date: Mon, 14 Oct 2024 15:37:03 -0700 Subject: [PATCH 1/2] Fix poll interval --- eppo_client/constants.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/eppo_client/constants.py b/eppo_client/constants.py index e0f7f3a..1ed89f4 100644 --- a/eppo_client/constants.py +++ b/eppo_client/constants.py @@ -1,6 +1,3 @@ # poller -# We accidently shipped Python with a 5 minute poll interval. -# Customers can set the poll interval to 30 seconds to match the behavior of the other server SDKs. -# Please change this to 30 seconds when ready to bump to 4.0. -POLL_JITTER_SECONDS_DEFAULT = 30 # 30 seconds -POLL_INTERVAL_SECONDS_DEFAULT = 5 * 60 # 5 minutes +POLL_JITTER_SECONDS_DEFAULT = 30 +POLL_INTERVAL_SECONDS_DEFAULT = 30 From 2f7bae8bcbc4ec9924dae46b7f7fb54b47c6af90 Mon Sep 17 00:00:00 2001 From: Sameeran Kunche Date: Mon, 14 Oct 2024 15:38:19 -0700 Subject: [PATCH 2/2] Update package version --- eppo_client/version.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eppo_client/version.py b/eppo_client/version.py index 1a6e221..064c0b3 100644 --- a/eppo_client/version.py +++ b/eppo_client/version.py @@ -1,4 +1 @@ -# Note to developers: When ready to bump to 4.0, please change -# the `POLL_INTERVAL_SECONDS` constant in `eppo_client/constants.py` -# to 30 seconds to match the behavior of the other server SDKs. -__version__ = "3.8.0" +__version__ = "4.0.2"