Changeset - d37b79ad0ae8
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 13 years ago 2012-10-22 14:26:00
marcin@python-works.com
Fixed issue with rm__ system that put removed repos in root location, it can lead to making a heavy copy, and remove operation.
1 file changed with 4 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/repo.py
Show inline comments
 
@@ -544,5 +544,8 @@ class RepoModel(BaseModel):
 
        _now = datetime.now()
 
        _ms = str(_now.microsecond).rjust(6, '0')
 
        _d = 'rm__%s__%s' % (_now.strftime('%Y%m%d_%H%M%S_' + _ms),
 
                             repo.repo_name)
 
                             repo.just_name)
 
        if repo.group:
 
            args = repo.group.full_path_splitted + [_d]
 
            _d = os.path.join(*args)
 
        shutil.move(rm_path, os.path.join(self.repos_path, _d))
0 comments (0 inline, 0 general)