We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76372af commit d12122bCopy full SHA for d12122b
src/agent/src/cdh.rs
@@ -64,26 +64,6 @@ impl CDHClient {
64
.await?;
65
Ok(unsealed_secret.plaintext)
66
}
67
-
68
- pub async fn secure_mount(
69
- &self,
70
- volume_type: &str,
71
- options: &std::collections::HashMap<String, String>,
72
- flags: Vec<String>,
73
- mount_point: &str,
74
- ) -> Result<()> {
75
- let req = confidential_data_hub::SecureMountRequest {
76
- volume_type: volume_type.to_string(),
77
- options: options.clone(),
78
- flags,
79
- mount_point: mount_point.to_string(),
80
- ..Default::default()
81
- };
82
- self.secure_mount_client
83
- .secure_mount(ttrpc::context::with_timeout(*CDH_API_TIMEOUT), &req)
84
- .await?;
85
- Ok(())
86
- }
87
88
89
pub async fn init_cdh_client(cdh_socket_uri: &str) -> Result<()> {
0 commit comments