Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Address lint message
Browse files Browse the repository at this point in the history
  • Loading branch information
Porges authored Sep 29, 2022
1 parent 26f00bb commit 311fcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/onefuzz/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def set_tcp_keepalive() -> None:
# Azure Load Balancer default timeout (4 minutes)
#
# https://urllib3.readthedocs.io/en/stable/reference/urllib3.connection.html?highlight=keep-alive#:~:text=For%20example%2C%20if,socket.SO_KEEPALIVE%2C%201)%2C%0A%5D
if not value in urllib3.connection.HTTPConnection.default_socket_options:
if value not in urllib3.connection.HTTPConnection.default_socket_options:
urllib3.connection.HTTPConnection.default_socket_options.extend((value,))


Expand Down

0 comments on commit 311fcb7

Please sign in to comment.