Closed Xuanwo closed 1 month ago
FYI, CI failing on main https://github.com/apache/iceberg-rust/commits/main/
Is it related to this PR?
error message,
error: use of deprecated method `opendal::Operator::is_exist`: rename to `exists` for consistence with `std::fs::exists`
--> crates/iceberg/src/io/file_io.rs:100:15
|
100 | Ok(op.is_exist(relative_path).await?)
| ^^^^^^^^
|
= note: `-D deprecated` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(deprecated)]`
error: use of deprecated method `opendal::Operator::is_exist`: rename to `exists` for consistence with `std::fs::exists`
--> crates/iceberg/src/io/file_io.rs:246:14
|
246 | .is_exist(&self.path[self.relative_path_pos..])
| ^^^^^^^^
error: use of deprecated method `opendal::Operator::is_exist`: rename to `exists` for consistence with `std::fs::exists`
--> crates/iceberg/src/io/file_io.rs:328:14
|
328 | .is_exist(&self.path[self.relative_path_pos..])
| ^^^^^^^^
FYI, CI failing on main
https://github.com/apache/iceberg-rust/commits/main/
Is it related to this PR?
error message,
error: use of deprecated method `opendal::Operator::is_exist`: rename to `exists` for consistence with `std::fs::exists` --> crates/iceberg/src/io/file_io.rs:100:15 | 100 | Ok(op.is_exist(relative_path).await?) | ^^^^^^^^ | = note: `-D deprecated` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(deprecated)]` error: use of deprecated method `opendal::Operator::is_exist`: rename to `exists` for consistence with `std::fs::exists` --> crates/iceberg/src/io/file_io.rs:246:14 | 246 | .is_exist(&self.path[self.relative_path_pos..]) | ^^^^^^^^ error: use of deprecated method `opendal::Operator::is_exist`: rename to `exists` for consistence with `std::fs::exists` --> crates/iceberg/src/io/file_io.rs:328:14 | 328 | .is_exist(&self.path[self.relative_path_pos..]) | ^^^^^^^^
Not related. opendal released a new version. I will fix it.
Hi, @kevinjqliu @sungwy, thank you for the review!
Github fix this from the runner side: https://github.com/actions/runner-images/pull/10794
I plan to add
setup-python
in every places we are going to usepip
in the following PRs.