File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import collections
22import itertools
33
4- import requests
54from sentinels import NOTHING
65
76from ._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 ()
Original file line number Diff line number Diff line change 11Changelog
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
You can’t perform that action at this time.
0 commit comments