Skip to content

Commit 66530b7

Browse files
committed
Merge branch 'hotfix/2.31.1'
2 parents 024b812 + 95c3fb5 commit 66530b7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

backslash/lazy_query.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import collections
22
import itertools
33

4-
import requests
54
from sentinels import NOTHING
65

76
from ._compat import iteritems
@@ -69,7 +68,7 @@ def _fetch_index(self, index):
6968

7069
def _fetch_page(self, page_index):
7170
assert page_index != 0
72-
response = requests.get(self._url.add_query_param(
71+
response = self._client.api.session.get(self._url.add_query_param(
7372
'page', str(page_index)).add_query_param('page_size', str(self._page_size)))
7473
raise_for_status(response)
7574
response_data = response.json()

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Changelog
22
=========
33

4+
* :release:`2.31.1 <11-9-2017>`
5+
* :bug:`53` Use api session when constructing lazy queries
46
* :release:`2.31.0 <10-9-2017>`
57
* :feature:`52` Support reporting sessions with a specific TTL, marking them for future deletion on the server
68
* :feature:`51` Report local and remote SCM branches if supported

0 commit comments

Comments
 (0)