Skip to content

Commit

Permalink
Add the retry strategies to the public API.
Browse files Browse the repository at this point in the history
  • Loading branch information
DobromirM committed Aug 2, 2024
1 parent 4cbf0dc commit 3b46a92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions swimos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from .client import SwimClient, IntervalStrategy
from .client import SwimClient, RetryStrategy, IntervalStrategy, ExponentialStrategy

__all__ = [SwimClient, IntervalStrategy]
__all__ = [SwimClient, RetryStrategy, IntervalStrategy, ExponentialStrategy]
4 changes: 2 additions & 2 deletions swimos/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.

from ._swim_client import SwimClient
from ._connections import IntervalStrategy
from ._connections import RetryStrategy, IntervalStrategy, ExponentialStrategy

__all__ = [SwimClient, IntervalStrategy]
__all__ = [SwimClient, RetryStrategy, IntervalStrategy, ExponentialStrategy]

0 comments on commit 3b46a92

Please sign in to comment.