Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/cmd/vtbackup/vtbackup.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func resetReplication(ctx context.Context, pos mysql.Position, mysqld mysqlctl.M
return vterrors.Wrap(err, "failed to reset slave")
}

// Check if we have a postion to resume from, if not reset to the beginning of time
// Check if we have a position to resume from, if not reset to the beginning of time
if !pos.IsZero() {
// Set the position at which to resume from the master.
if err := mysqld.SetSlavePosition(ctx, pos); err != nil {
Expand Down