Skip to content

Commit ff8f828

Browse files
committed
fix
1 parent b4cf124 commit ff8f828

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/hopsworks_common/client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def init(
3131
port: Optional[int] = None,
3232
project: Optional[str] = None,
3333
engine: Optional[str] = None,
34-
hostname_verification: Optional[bool] = False,
34+
hostname_verification: Optional[bool] = None,
3535
trust_store_path: Optional[str] = None,
3636
cert_folder: Optional[str] = None,
3737
api_key_file: Optional[str] = None,

python/hopsworks_common/connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
HOPSWORKS_PORT_DEFAULT = 443
4040
HOSTNAME_VERIFICATION_DEFAULT = os.environ.get(
41-
"HOPSWORKS_HOSTNAME_VERIFICATION", "True"
41+
"HOPSWORKS_HOSTNAME_VERIFICATION", "False"
4242
).lower() in ("true", "1", "y", "yes")
4343
# alias for backwards compatibility:
4444
HOPSWORKS_HOSTNAME_VERIFICATION_DEFAULT = HOSTNAME_VERIFICATION_DEFAULT

0 commit comments

Comments
 (0)