Skip to content

Commit

Permalink
Dummy bad commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeiPatiakin committed Feb 5, 2025
1 parent da768fd commit 96e9a31
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/src/services/fs/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 96e9a31

Please sign in to comment.