Skip to content

Commit

Permalink
ruby test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
geetanshjuneja committed Dec 30, 2024
1 parent 08deaf4 commit eb451db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bindings/ruby/src/capability.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ define_accessors!(Capability, {
list_with_limit: bool,
list_with_start_after: bool,
list_with_recursive: bool,
list_with_version: bool,
list_with_versioned: bool,
presign: bool,
presign_read: bool,
presign_stat: bool,
Expand Down Expand Up @@ -137,7 +137,7 @@ pub fn include(gem_module: &RModule) -> Result<(), Error> {
list_with_limit,
list_with_start_after,
list_with_recursive,
list_with_version,
list_with_versioned,
presign,
presign_read,
presign_stat,
Expand Down
2 changes: 1 addition & 1 deletion core/src/layers/capability_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use std::sync::Arc;
///
/// There are two main differences between this checker with the `CorrectnessChecker`:
/// 1. This checker provides additional checks for capabilities like write_with_content_type and
/// list_with_version, among others. These capabilities do not affect data integrity, even if
/// list_with_versioned, among others. These capabilities do not affect data integrity, even if
/// the underlying storage services do not support them.
///
/// 2. OpenDAL doesn't apply this checker by default. Users can enable this layer if they want to
Expand Down

0 comments on commit eb451db

Please sign in to comment.