This repository was archived by the owner on Jan 30, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ indicatif = "0.18.3"
2828json_to_table = " 0.12.0"
2929miette = { version = " 7.6.0" , features = [" fancy" ] }
3030rand = " 0.9.2"
31- s2-sdk = { version = " 0.22.4 " , features = [" _hidden" ] }
31+ s2-sdk = { version = " 0.22.5 " , features = [" _hidden" ] }
3232serde = { version = " 1.0.228" , features = [" derive" ] }
3333serde_json = { version = " 1.0.149" , features = [" preserve_order" ] }
3434strum = { version = " 0.27" , features = [" derive" ] }
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pub async fn list_basins<'a>(
5959
6060 Ok ( Box :: pin ( stream:: iter ( page. values . into_iter ( ) . map ( Ok ) ) ) )
6161 } else {
62- let mut input = ListAllBasinsInput :: new ( ) ;
62+ let mut input = ListAllBasinsInput :: new ( ) . with_ignore_pending_deletions ( false ) ;
6363 if let Some ( p) = prefix {
6464 input = input. with_prefix ( p) ;
6565 }
@@ -320,7 +320,7 @@ pub async fn list_streams<'a>(
320320
321321 Ok ( Box :: pin ( stream:: iter ( page. values . into_iter ( ) . map ( Ok ) ) ) )
322322 } else {
323- let mut input = ListAllStreamsInput :: new ( ) ;
323+ let mut input = ListAllStreamsInput :: new ( ) . with_ignore_pending_deletions ( false ) ;
324324 if let Some ( p) = prefix {
325325 input = input. with_prefix ( p) ;
326326 }
You can’t perform that action at this time.
0 commit comments