Skip to content

Commit 63ed256

Browse files
committed
fix: Make default verify_ssl always false
1 parent d5f5b1e commit 63ed256

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ README_draft.md
3535
KNOWN_ISSUES.md
3636
ISSUE_TEMPLATE.md
3737
examples/test.py
38-
examples/README.md
38+
examples/README.md
39+
temp

onvif/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(
5353
timeout=10,
5454
cache=CacheMode.ALL,
5555
use_https=False,
56-
verify_ssl=True,
56+
verify_ssl=False,
5757
):
5858
self.common_args = {
5959
"host": host,

onvif/operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(
5050
cache: CacheMode = CacheMode.ALL, # all | db | mem | none
5151
cache_path: str = None,
5252
use_https: bool = False,
53-
verify_ssl: bool = True,
53+
verify_ssl: bool = False,
5454
):
5555
self.wsdl_path = wsdl_path
5656
self.host = host

0 commit comments

Comments
 (0)