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
"Invalid `mode` value: '{value}'. Use 'delta_lake' or 'spark_connect'. For details, visit: https://spiceai.org/docs/components/data-connectors/databricks#parameters"
100
+
"Invalid `mode` value: '{value}'. Valid modes are 'sql_warehouse', 'delta_lake', and 'spark_connect'. For details, visit: https://spiceai.org/docs/components/data-connectors/databricks#parameters"
101
101
))]
102
102
InvalidMode{value:String},
103
103
@@ -107,12 +107,12 @@ pub enum Error {
107
107
InvalidConfiguration{message:String},
108
108
109
109
#[snafu(display(
110
-
"Failed to build Databricks connector: required component '{missing_component}' is missing. An unexpected error occurred. Report a bug to request support: https://github.com/spiceai/spiceai/issues"
110
+
"Failed to build Databricks connector. An unexpected internal error occurred. Report a bug on GitHub: https://github.com/spiceai/spiceai/issues"
111
111
))]
112
112
UnableToBuild{missing_component:String},
113
113
114
114
#[snafu(display(
115
-
"Failed to obtain Databricks service principal token for machine-to-machine authentication. {source}"
115
+
"Failed to obtain Databricks authentication token. {source} Verify the service principal credentials are correctly configured. For details, visit: https://spiceai.org/docs/components/data-connectors/databricks#parameters"
116
116
))]
117
117
UnableToGetToken{
118
118
source:Box<dyn std::error::Error + Send + Sync>,
@@ -841,11 +841,7 @@ impl DataConnector for Databricks {
0 commit comments