Skip to content

Commit ea15c6a

Browse files
committed
Update error message in DatabricksClientConfiguratorManager to reflect SSL error handling instead of HTTP error. This change enhances clarity in logging and exception management related to SSL configuration failures.
1 parent e3ad637 commit ea15c6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/databricks/jdbc/common/DatabricksClientConfiguratorManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public ClientConfigurator getConfigurator(IDatabricksConnectionContext context)
3030
return new ClientConfigurator(context);
3131
} catch (DatabricksSSLException e) {
3232
String message =
33-
String.format("client configurator failed due to HTTP error: %s", e.getMessage());
33+
String.format("client configurator failed due to SSL error: %s", e.getMessage());
3434
LOGGER.error(e, message);
3535
throw new DatabricksDriverException(message, DatabricksDriverErrorCode.AUTH_ERROR);
3636
}

0 commit comments

Comments
 (0)