Skip to content

Commit

Permalink
Merge branch 'hotfix/2.31.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
vmalloc committed Sep 11, 2017
2 parents 024b812 + 95c3fb5 commit 66530b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions backslash/lazy_query.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import collections
import itertools

import requests
from sentinels import NOTHING

from ._compat import iteritems
Expand Down Expand Up @@ -69,7 +68,7 @@ def _fetch_index(self, index):

def _fetch_page(self, page_index):
assert page_index != 0
response = requests.get(self._url.add_query_param(
response = self._client.api.session.get(self._url.add_query_param(
'page', str(page_index)).add_query_param('page_size', str(self._page_size)))
raise_for_status(response)
response_data = response.json()
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Changelog
=========

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

0 comments on commit 66530b7

Please sign in to comment.