Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
diqiu50 committed Dec 27, 2024
1 parent def5957 commit 86e5308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/filesystem-fuse/src/gravitino_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ impl GravitinoClient {

pub fn init(&self) {}

pub fn do_post(&self, path: &str, data: &str) {
println!("POST request to {} with data: {}", path, data);
pub fn do_post(&self, _path: &str, _data: &str) {
todo!()
}

pub fn request(&self, _path: &str, _data: &str) -> Result<(), GvfsError> {
Expand Down

0 comments on commit 86e5308

Please sign in to comment.