You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the error about non-upgraded working copy is only caught during svn info command execution because this is the 1st command executed to detect if this is a working copy or not.
This however isn't correct behavior considering that result of svn info call is cached for if SVN client is upgraded while cache is still valid then no svn info command is executed and exception about svn upgrade command is thrown.
Proposing to handle error about failed command due non-upgraded working copy right where that exception is thrown and:
ask user to upgrade
if user agrees to upgrade, then upgrade and retry previous command
if user declines to upgrade, then throw exception as before
The text was updated successfully, but these errors were encountered:
Right now the error about non-upgraded working copy is only caught during
svn info
command execution because this is the 1st command executed to detect if this is a working copy or not.This however isn't correct behavior considering that result of
svn info
call is cached for if SVN client is upgraded while cache is still valid then nosvn info
command is executed and exception aboutsvn upgrade
command is thrown.Proposing to handle error about failed command due non-upgraded working copy right where that exception is thrown and:
The text was updated successfully, but these errors were encountered: