View command - moving version check after proxy creation (#177)

This commit is contained in:
Igor Gov
2021-08-08 12:26:58 +03:00
committed by GitHub
parent 0595df8b87
commit d34dacbbe2
4 changed files with 30 additions and 24 deletions

View File

@@ -46,7 +46,7 @@ func CheckVersionCompatibility(port uint16) (bool, error) {
return true, nil
}
Log.Infof(uiUtils.Red, fmt.Sprintf("cli version (%s) is not compatible with api version (%s)", SemVer, apiSemVer))
Log.Errorf(uiUtils.Red, fmt.Sprintf("cli version (%s) is not compatible with api version (%s)", SemVer, apiSemVer))
return false, nil
}