File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/cubejs-backend-native/src
rust/cubesql/cubesql/src/sql Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ impl AuthContext for NativeSQLAuthContext {
111111impl SqlAuthService for NodeBridgeAuthService {
112112 async fn authenticate (
113113 & self ,
114- sql_auth_request : SqlAuthServiceAuthenticateRequest ,
114+ request : SqlAuthServiceAuthenticateRequest ,
115115 user : Option < String > ,
116116 password : Option < String > ,
117117 ) -> Result < AuthenticateResponse , CubeError > {
@@ -123,8 +123,8 @@ impl SqlAuthService for NodeBridgeAuthService {
123123 request : TransportAuthRequest {
124124 id : format ! ( "{}-span-1" , request_id) ,
125125 meta : None ,
126- protocol : sql_auth_request . protocol . clone ( ) ,
127- method : sql_auth_request . method . clone ( ) ,
126+ protocol : request . protocol ,
127+ method : request . method ,
128128 } ,
129129 user : user. clone ( ) ,
130130 password : password. clone ( ) ,
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ pub struct SqlAuthServiceAuthenticateRequest {
5454pub trait SqlAuthService : Send + Sync + Debug {
5555 async fn authenticate (
5656 & self ,
57- sql_auth_request : SqlAuthServiceAuthenticateRequest ,
57+ request : SqlAuthServiceAuthenticateRequest ,
5858 user : Option < String > ,
5959 password : Option < String > ,
6060 ) -> Result < AuthenticateResponse , CubeError > ;
You can’t perform that action at this time.
0 commit comments