Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3385778
D4934.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D4934.diff
View Options
diff --git a/native/cpp/CommonCpp/grpc/grpc_client/src/lib.rs b/native/cpp/CommonCpp/grpc/grpc_client/src/lib.rs
--- a/native/cpp/CommonCpp/grpc/grpc_client/src/lib.rs
+++ b/native/cpp/CommonCpp/grpc/grpc_client/src/lib.rs
@@ -16,7 +16,6 @@
use ::identity::Cipher;
use crate::identity::{
- get_user_id_request::AuthType,
identity_service_client::IdentityServiceClient,
login_request::Data::PakeLoginRequest,
login_request::Data::WalletLoginRequest,
@@ -31,7 +30,7 @@
registration_request::Data::PakeRegistrationUploadAndCredentialRequest,
registration_response::Data::PakeLoginResponse as RegistrationPakeLoginResponse,
registration_response::Data::PakeRegistrationResponse, GetUserIdRequest,
- GetUserIdResponse, LoginRequest, LoginResponse,
+ LoginRequest, LoginResponse,
PakeCredentialRequestAndUserId as PakeCredentialRequestAndUserIdStruct,
PakeLoginRequest as PakeLoginRequestStruct,
PakeLoginResponse as PakeLoginResponseStruct,
@@ -79,24 +78,28 @@
async fn get_user_id(
&mut self,
- auth_type: AuthType,
+ auth_type: i32,
user_info: String,
- ) -> Result<Response<GetUserIdResponse>, Status> {
- self
- .identity_client
- .get_user_id(GetUserIdRequest {
- auth_type: auth_type.into(),
- user_info,
- })
- .await
+ ) -> Result<String, Status> {
+ Ok(
+ self
+ .identity_client
+ .get_user_id(GetUserIdRequest {
+ auth_type,
+ user_info,
+ })
+ .await?
+ .into_inner()
+ .user_id,
+ )
}
#[instrument(skip(self))]
fn get_user_id_blocking(
&mut self,
- auth_type: AuthType,
+ auth_type: i32,
user_info: String,
- ) -> Result<Response<GetUserIdResponse>, Status> {
+ ) -> Result<String, Status> {
RUNTIME.block_on(self.get_user_id(auth_type, user_info))
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 30, 2:14 AM (21 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2599038
Default Alt Text
D4934.diff (1 KB)
Attached To
Mode
D4934: [native] change params and types to satisfy cxx requirements
Attached
Detach File
Event Timeline
Log In to Comment