Skip to content

Commit f2c30b0

Browse files
committed
v2.1.13 add http_timeout suport
1 parent 33265d5 commit f2c30b0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

datapackage_pipelines/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.12
1+
2.1.13

datapackage_pipelines/lib/stream_remote_resources.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ def opener():
147147
_params.update(
148148
dict(x for x in __resource.items()
149149
if x[0] in {'headers', 'scheme', 'encoding', 'sample_size', 'allow_html',
150-
'force_strings', 'force_parse', 'skip_rows', 'compression'}))
150+
'force_strings', 'force_parse', 'skip_rows', 'compression',
151+
'http_timeout'}))
151152
if isinstance(_params.get('skip_rows'), int): # Backwards compatibility
152153
_params['skip_rows'] = list(range(1, _params.get('skip_rows') + 1))
153154

0 commit comments

Comments
 (0)