Skip to content

Commit

Permalink
fix: ci fail on opendal
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Nov 12, 2024
1 parent a47cac2 commit 8ce73c8
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions fusio-opendal/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,11 @@ impl Fs for OpendalFs {
.map_err(parse_opendal_error)
}

fn copy(&self, from: &Path, to: &Path) -> impl Future<Output = Result<(), Error>> + MaybeSend {
async fn copy(&self, from: &Path, to: &Path) -> Result<(), Error> {
self.op.copy(from.as_ref(), to.as_ref())
}

fn link<F: Fs>(
&self,
from: &Path,
to_fs: &F,
to: &Path,
) -> impl Future<Output = Result<(), Error>> + MaybeSend {
async fn link<F: Fs>(&self, from: &Path, to_fs: &F, to: &Path) -> Result<(), Error> {
todo!()
}
}

0 comments on commit 8ce73c8

Please sign in to comment.