diff --git a/CHANGELOG.md b/CHANGELOG.md index 14d8c8f2..8f0c70fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Fixed +- Use correct path to requests_retry_session module ## [2.0.48] - 2024-12-18 ### Changed diff --git a/src/bos/operators/utils/__init__.py b/src/bos/operators/utils/__init__.py index 1e22d2e2..b98f64a1 100644 --- a/src/bos/operators/utils/__init__.py +++ b/src/bos/operators/utils/__init__.py @@ -23,7 +23,7 @@ # from functools import partial -from bos.common.base_requests_retry_session import requests_retry_session as base_requests_retry_session +from .base_requests_retry_session import requests_retry_session as base_requests_retry_session PROTOCOL = 'http'