Skip to content
Open
1 change: 1 addition & 0 deletions bindings/java/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ fn make_list_options<'a>(
recursive: convert::read_bool_field(env, options, "recursive").unwrap_or_default(),
versions: convert::read_bool_field(env, options, "versions").unwrap_or_default(),
deleted: convert::read_bool_field(env, options, "deleted").unwrap_or_default(),
..Default::default()
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes breaking ci

})
}

Expand Down
1 change: 1 addition & 0 deletions bindings/nodejs/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ impl From<ListOptions> for opendal::options::ListOptions {
recursive: value.recursive.unwrap_or_default(),
versions: value.versions.unwrap_or_default(),
deleted: value.deleted.unwrap_or_default(),
..Default::default()
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes ci

}
}
}
Expand Down
1 change: 1 addition & 0 deletions bindings/python/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ impl From<ListOptions> for ocore::options::ListOptions {
recursive: opts.recursive.unwrap_or(false),
versions: opts.versions.unwrap_or(false),
deleted: opts.deleted.unwrap_or(false),
..Default::default()
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes breaking ci

}
}
}
Expand Down
Loading
Loading