Skip to content

Commit 1e63525

Browse files
committed
common_request_params included in RT stream requests
1 parent 2b8c094 commit 1e63525

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

ravenpackapi/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from ravenpackapi.utils.constants import JSON_AVAILABLE_FIELDS, ENTITY_TYPES
1515

1616
_VALID_METHODS = ('get', 'post', 'put', 'delete')
17-
VERSION = '1.0.29'
17+
VERSION = '1.0.30'
1818

1919
logger = logging.getLogger("ravenpack.core")
2020

ravenpackapi/models/dataset.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ def request_realtime(self):
295295
response = requests.get(endpoint,
296296
headers=api.headers,
297297
stream=True,
298+
**api.common_request_params
298299
)
299300
if response.status_code != 200:
300301
logger.error("Error calling the API, we tried: %s" % to_curl(response.request))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '1.0.29'
3+
VERSION = '1.0.30'
44

55
with open('README.rst') as readme_file:
66
readme = readme_file.read()

0 commit comments

Comments
 (0)