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 br/pkg/conn/conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func NewMgr(
return nil, errors.Errorf("unknown command type, comman code is %d", versionCheckerType)
}
if versionErr != nil {
return nil, errors.Annotate(err, "running BR in incompatible version of cluster, "+
return nil, errors.Annotate(versionErr, "running BR in incompatible version of cluster, "+
"if you believe it's OK, use --check-requirements=false to skip.")
}
}
Expand Down
Loading