From 84aafc7a4353a1bd4301f536d128af98381b95f8 Mon Sep 17 00:00:00 2001 From: t8y2 <1156263951@qq.com> Date: Fri, 12 Jun 2026 00:46:26 +0800 Subject: [PATCH] fix: pass jdbc_driver_paths and jdbc_driver_class to agent connect params --- crates/dbx-core/src/agent_connection.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/dbx-core/src/agent_connection.rs b/crates/dbx-core/src/agent_connection.rs index c710bec84..22f799eac 100644 --- a/crates/dbx-core/src/agent_connection.rs +++ b/crates/dbx-core/src/agent_connection.rs @@ -46,6 +46,8 @@ pub fn agent_connect_params(config: &ConnectionConfig, host: &str, port: u16, da "client_cert_path": config.client_cert_path, "client_key_path": config.client_key_path, "etcd_endpoints": etcd_endpoints, + "jdbc_driver_class": config.jdbc_driver_class.as_deref().unwrap_or(""), + "jdbc_driver_paths": &config.jdbc_driver_paths, }) }