Skip to content

Commit

Permalink
Fix output progress on deployment (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes authored Jan 4, 2024
1 parent cffb5be commit d1bd923
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3222,11 +3222,11 @@ private bool DeploymentExecuteIncremental(

// this is only used for progress reporting, is not the actual number of bytes erased
erasedBytes += (int)WireProtocolPacketSize;
}

// update progress counter
// this is only used for progress reporting, is not the actual number of bytes erased
deploymentOperationExecutedBytes += (int)WireProtocolPacketSize;
// update progress counter
// this is only used for progress reporting, is not the actual number of bytes erased
deploymentOperationExecutedBytes += (int)WireProtocolPacketSize;
}
}

foreach (DeploymentBlock block in blocksToDeploy)
Expand Down

0 comments on commit d1bd923

Please sign in to comment.