Skip to content

Commit

Permalink
[Forge] Use append mode when restarting nodes.
Browse files Browse the repository at this point in the history
Closes: #10092
  • Loading branch information
JoshLind authored and bors-libra committed Dec 22, 2021
1 parent 70a5189 commit 42df9cd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions testsuite/forge/src/backend/local/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ impl LocalNode {
let log_file = OpenOptions::new()
.create(true)
.write(true)
.append(true)
.open(self.log_path())?;

// Start node process
Expand Down

0 comments on commit 42df9cd

Please sign in to comment.