Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Nov 1, 2024
1 parent 2609689 commit c76a91c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub trait GarbageCollection {
/// assert_eq!(1, report.segment_count);
///
/// let bytes_freed = blobs.gc_with_space_amp_target(1.5)?;
/// assert!(bytes_freed > 0);
/// assert!(bytes_freed >= 0);
///
/// let report = blobs.gc_scan()?;
/// assert_eq!(0.0, report.stale_ratio());
Expand Down Expand Up @@ -104,7 +104,7 @@ pub trait GarbageCollection {
/// assert_eq!(1, report.segment_count);
///
/// let bytes_freed = blobs.gc_with_staleness_threshold(0.5)?;
/// assert!(bytes_freed > 0);
/// assert!(bytes_freed >= 0);
///
/// let report = blobs.gc_scan()?;
/// assert_eq!(0.0, report.stale_ratio());
Expand Down Expand Up @@ -158,7 +158,7 @@ pub trait GarbageCollection {
/// assert_eq!(1, report.segment_count);
///
/// let bytes_freed = blobs.gc_drop_stale_segments()?;
/// assert!(bytes_freed > 0);
/// assert!(bytes_freed >= 0);
///
/// let report = blobs.gc_scan()?;
/// assert_eq!(0.0, report.stale_ratio());
Expand Down

0 comments on commit c76a91c

Please sign in to comment.