From da768fd58fc3d651eecd6b90c918dc3ceff8740c Mon Sep 17 00:00:00 2001 From: Sergei Patiakin Date: Tue, 4 Feb 2025 14:03:12 +0100 Subject: [PATCH 1/2] Dummy commit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e04565dff544..588f87c708bb 100644 --- a/README.md +++ b/README.md @@ -269,3 +269,4 @@ For more details, see the [Apache Product Name Usage Guide](https://www.apache.o Licensed under the Apache License, Version 2.0: Apache OpenDAL, OpenDAL, and Apache are either registered trademarks or trademarks of the Apache Software Foundation. + From 96e9a31cd39142a1f8786da7494a8636b4d497a2 Mon Sep 17 00:00:00 2001 From: Sergei Patiakin Date: Wed, 5 Feb 2025 11:27:12 +0100 Subject: [PATCH 2/2] Dummy bad commit --- core/src/services/fs/backend.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/src/services/fs/backend.rs b/core/src/services/fs/backend.rs index 1a0afb9c2e86..7f53f7312296 100644 --- a/core/src/services/fs/backend.rs +++ b/core/src/services/fs/backend.rs @@ -272,6 +272,9 @@ impl Access for FsBackend { } async fn write(&self, path: &str, op: OpWrite) -> Result<(RpWrite, Self::Writer)> { + if 1 < 2 { + panic!("Dummy failure"); + } let (target_path, tmp_path) = if let Some(atomic_write_dir) = &self.core.atomic_write_dir { let target_path = self .core @@ -443,6 +446,9 @@ impl Access for FsBackend { } fn blocking_write(&self, path: &str, op: OpWrite) -> Result<(RpWrite, Self::BlockingWriter)> { + if 1 < 2 { + panic!("Dummy failure"); + } let (target_path, tmp_path) = if let Some(atomic_write_dir) = &self.core.atomic_write_dir { let target_path = self .core