Skip to content

Commit

Permalink
fix: append instead of start from scratch after each restart
Browse files Browse the repository at this point in the history
  • Loading branch information
blelump committed Dec 6, 2024
1 parent e5e2ea2 commit 177a71a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/watcher/src/watcher/tel_providing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl Store {
// Create file if doesn't exist.
let _file = OpenOptions::new()
.read(true)
.write(true)
.append(true)
.create(true)
.open(&path)?;
Ok(Store(path))
Expand Down

0 comments on commit 177a71a

Please sign in to comment.