Skip to content

Commit fe5a3df

Browse files
committed
Addressed code review comments.
1 parent 5208484 commit fe5a3df

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
- Added functionality to make retries for the failed HTTP requests.
89

910

1011
# [1.10.0] - 2023-11-08

docs/modules/ROOT/pages/index.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ It will try to re-send the same request again with exponential back-off for HTTP
284284
[source,python]
285285
----
286286
include::example$api/tutorial008.py[]
287+
----
287288

288289
[#cache]
289290
== Cache

tests/unit/test_docs/test_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,4 @@ def test_tutorial008(app_runner, mocker: MockerFixture):
127127
time_event = ScheduledDataTimeEvent(
128128
asset_id=0, company_id=0, start_time=0, end_time=0
129129
)
130-
time_mock = mocker.patch.object(Api, 'insert_data')
131130
app_runner(tutorial008.scheduled_app, time_event)
132-
time_mock.assert_not_called()

0 commit comments

Comments
 (0)