Skip to content

Commit

Permalink
Merge pull request #2637 from subspace/fix-incorrect-dry-run-message
Browse files Browse the repository at this point in the history
Fix incorrect `--dry-run` message
  • Loading branch information
nazar-pc authored Mar 25, 2024
2 parents 63f476a + 8856d37 commit 7d420f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/subspace-farmer/src/single_disk_farm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@ impl SingleDiskFarm {
) -> Result<(), SingleDiskFarmScrubError> {
let span = Span::current();

if !dry_run {
if dry_run {
info!("Dry run is used, no changes will be written to disk");
}

Expand Down

0 comments on commit 7d420f7

Please sign in to comment.