@Minh Duc Nguyen :
It seems like the error you are facing is due to a failure in verifying the SSL certificate of your Databricks workspace. To resolve this, you need to add the custom CA certificate to your VS Code settings. Here's how you can do it:
- Obtain the custom CA certificate from your Databricks administrator.
- Open VS Code and press "Ctrl + Shift + P" (Windows) or "Cmd + Shift + P" (Mac) to open the command palette.
- Type "settings" and select "Preferences: Open User Settings" from the list of options.
- In the search bar, type "certificates" to filter the settings.
- Under "HTTP", find the setting for "Certificates: Authority". Click on "Edit in settings.json" to open the settings file.
- In the settings file, add the path to your custom CA certificate in the following format:
"http.proxyStrictSSL": true,
"http.proxyAuthorization": null,
"http.proxy": "",
"http.proxySupport": "off",
"http.proxyCertificate": "path/to/custom/ca/certificate.pem",
"http.proxyCertificates": [
"path/to/custom/ca/certificate.pem"
],
"http.certificates": [
"path/to/custom/ca/certificate.pem"
],
"http.proxyCaCertificates": [
"path/to/custom/ca/certificate.pem"
]
Save the settings file and try connecting to your Databricks workspace again through the VS Code extension.
If the issue persists, you may want to try updating your VS Code and Databricks extension to the latest versions, or contact Databricks support for further assistance.