##// END OF EJS Templates
diffs: use whole chunk diff to calculate if it's oversized or not....
diffs: use whole chunk diff to calculate if it's oversized or not. - This fixes an issue if a file is added that has very large number of small lines. In this case the time to detect if the diff should be limited was very very long and CPU intensive.

File last commit:

r1543:4acfe019 default
r2070:7939c6bf default
Show More
050_version_4_0_0.py
37 lines | 867 B | text/x-python | PythonLexer
project: added all source files and assets
r1 # -*- coding: utf-8 -*-
import logging
from sqlalchemy.orm.attributes import flag_modified
from rhodecode.lib.dbmigrate.versions import _reset_base
from rhodecode.model import init_model_encryption, meta
log = logging.getLogger(__name__)
def upgrade(migrate_engine):
"""
Upgrade operations go here.
Don't create your own engine; bind migrate_engine to your metadata
"""
_reset_base(migrate_engine)
from rhodecode.lib.dbmigrate.schema import db_3_7_0_0
init_model_encryption(db_3_7_0_0)
fixups(db_3_7_0_0, meta.Session)
def downgrade(migrate_engine):
pass
def fixups(models, Session):
for repo in models.Repository.get_all():
if repo.clone_uri:
migration: change prints to logging
r1543 log.info('Encrypting clone uri in repo %s', repo)
project: added all source files and assets
r1 flag_modified(repo, 'clone_uri')
Session().add(repo)
Session().commit()