You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***semrelease:** Provide proper git message for semantic release ([88e2c08](https://github.com/watson-developer-cloud/python-sdk/commit/88e2c0806882693d175c5b8aedb1bf187223db79))
***bumpversion:** Skip for bumpversion ([fd38d73](https://github.com/watson-developer-cloud/python-sdk/commit/fd38d7395daf3d28e8dd085b0a1c8e9d4358a1b5))
14
+
***semantic:** remove tag in bumpversion ([bb1a6a9](https://github.com/watson-developer-cloud/python-sdk/commit/bb1a6a93fcbc8ac13df45d78fc2b97b071267699))
***bumpversion:** Skip for bumpversion ([fd38d73](https://github.com/watson-developer-cloud/python-sdk/commit/fd38d7395daf3d28e8dd085b0a1c8e9d4358a1b5))
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -269,7 +269,7 @@ For more information, follow the [MIGRATION-V4](https://github.com/watson-develo
269
269
To move from v3.x to v4.0, refer to the [MIGRATION-V4](https://github.com/watson-developer-cloud/python-sdk/blob/master/MIGRATION-V4.md).
270
270
271
271
## Configuring the http client (Supported from v1.1.0)
272
-
To set client configs like timeout use the `with_http_config()` function and pass it a dictionary of configs. For example for a Assistant service instance
272
+
To set client configs like timeout use the `set_http_config()` function and pass it a dictionary of configs. For example for a Assistant service instance
273
273
274
274
```python
275
275
from ibm_watson import AssistantV1
@@ -398,7 +398,8 @@ from ibm_cloud_sdk_core.authenticators import CloudPakForDataAuthenticator
398
398
authenticator = CloudPakForDataAuthenticator(
399
399
'<your username>',
400
400
'<your password>',
401
-
'<authentication url>') # should be of the form https://{icp_cluster_host}{instance-id}/api
401
+
'<authentication url>', # should be of the form https://{icp_cluster_host}{instance-id}/api
402
+
disable_ssl_verification=True) # Disable ssl verification for authenticator
0 commit comments