Skip to content

Commit 435e3b7

Browse files
authored
Fix socket timeout setting ignored for filebeat (#50)
1 parent ec43f0e commit 435e3b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

logstash_async/transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def __init__( # pylint: disable=too-many-arguments
155155
certfile,
156156
ca_certs,
157157
timeout=TimeoutNotSet):
158-
timeout_ = None if timeout is not TimeoutNotSet else timeout
158+
timeout_ = None if timeout is TimeoutNotSet else timeout
159159
self._client_arguments = dict(
160160
host=host,
161161
port=port,

0 commit comments

Comments
 (0)