Skip to content

Commit 4016887

Browse files
authored
streams shouldn't use the same read timeout as the rest of the SDK (#132)
1 parent 770fd71 commit 4016887

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

ldclient/impl/http.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,22 @@ def _http_factory(config):
1717
return HTTPFactory(_base_headers(config), config.http)
1818

1919
class HTTPFactory(object):
20-
def __init__(self, base_headers, http_config):
20+
def __init__(self, base_headers, http_config, override_read_timeout=None):
2121
self.__base_headers = base_headers
2222
self.__http_config = http_config
23-
self.__timeout = urllib3.Timeout(connect=http_config.connect_timeout, read=http_config.read_timeout)
23+
self.__timeout = urllib3.Timeout(
24+
connect=http_config.connect_timeout,
25+
read=http_config.read_timeout if override_read_timeout is None else override_read_timeout
26+
)
2427

2528
@property
2629
def base_headers(self):
2730
return self.__base_headers
2831

32+
@property
33+
def http_config(self):
34+
return self.__http_config
35+
2936
@property
3037
def timeout(self):
3138
return self.__timeout

ldclient/sse_client.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,14 @@ def __init__(self, url, last_id=None, retry=3000, connect_timeout=10, read_timeo
2828
self.url = url
2929
self.last_id = last_id
3030
self.retry = retry
31-
self._connect_timeout = connect_timeout
32-
self._read_timeout = read_timeout
3331
self._chunk_size = chunk_size
3432

3533
if http_factory:
3634
self._timeout = http_factory.timeout
3735
base_headers = http_factory.base_headers
3836
else:
3937
# for backward compatibility in case anyone else is using this class
40-
self._timeout = urllib3.Timeout(connect=self._connect_timeout, read=self._read_timeout)
38+
self._timeout = urllib3.Timeout(connect=connect_timeout, read=read_timeout)
4139
base_headers = {}
4240

4341
# Optional support for passing in an HTTP client

ldclient/streaming.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import math
1313
import time
1414

15-
from ldclient.impl.http import _http_factory
15+
from ldclient.impl.http import HTTPFactory, _http_factory
1616
from ldclient.impl.retry_delay import RetryDelayStrategy, DefaultBackoffStrategy, DefaultJitterStrategy
1717
from ldclient.interfaces import UpdateProcessor
1818
from ldclient.sse_client import SSEClient
@@ -75,8 +75,8 @@ def run(self):
7575
messages = self._connect()
7676
for msg in messages:
7777
if not self._running:
78-
log.warning("but I'm done")
7978
break
79+
self._retry_delay.set_good_since(time.time())
8080
message_ok = self.process_message(self._store, self._requester, msg)
8181
if message_ok:
8282
self._record_stream_init(False)
@@ -104,10 +104,13 @@ def _record_stream_init(self, failed):
104104
self._diagnostic_accumulator.record_stream_init(current_time, current_time - self._es_started, failed)
105105

106106
def _connect(self):
107+
# We don't want the stream to use the same read timeout as the rest of the SDK.
108+
http_factory = _http_factory(self._config)
109+
stream_http_factory = HTTPFactory(http_factory.base_headers, http_factory.http_config, override_read_timeout=stream_read_timeout)
107110
return SSEClient(
108111
self._uri,
109112
retry = None, # we're implementing our own retry
110-
http_factory = _http_factory(self._config)
113+
http_factory = stream_http_factory
111114
)
112115

113116
def stop(self):

0 commit comments

Comments
 (0)