Actions
Bug #5482
openChanging a repo's 'Remote pull uri' in its Settings fails with 'No repo type specified'
Start date:
26.06.2018
Due date:
% Done:
0%
Estimated time:
Sorting:
Commit Number:
Affected Version:
Description
Presumed fix:
--- rhodecode/model/validation_schema/validators.py.old 2018-06-29 13:17:56.257500455 +0100
+++ rhodecode/model/validation_schema/validators.py 2018-06-29 10:57:34.197339295 +0100
@@ -89,9 +93,9 @@
# initially check if it's at least the proper URL
# or does it pass basic auth
- MercurialRepository.check_url(url, config)
+ return MercurialRepository.check_url(url, config)
elif 'svn+http' in url[:8]: # svn->hg import
- SubversionRepository.check_url(url, config)
+ return SubversionRepository.check_url(url, config)
elif 'git+http' in url[:8]: # git->hg import
raise NotImplementedError()
else:
@@ -106,7 +110,7 @@
if 'http' in url[:4]:
# initially check if it's at least the proper URL
# or does it pass basic auth
- GitRepository.check_url(url, config)
+ return GitRepository.check_url(url, config)
elif 'svn+http' in url[:8]: # svn->git import
raise NotImplementedError()
elif 'hg+http' in url[:8]: # hg->git import
Actions