Changeset - 56a8434a88cc
[Not reviewed]
beta
0 4 0
Marcin Kuzminski - 15 years ago 2010-11-07 15:06:43
marcin@python-works.com
fixes #51 deleting a repo didn't delete it's dependent db entries.
fixed routes logger double entries
4 files changed with 6 insertions and 1 deletions:
0 comments (0 inline, 0 general)
development.ini
Show inline comments
 
@@ -136,6 +136,7 @@ level = DEBUG
 
handlers = console
 
qualname = routes.middleware
 
# "level = DEBUG" logs the route matched and routing variables.
 
propagate = 0
 

	
 
[logger_rhodecode]
 
level = DEBUG
production.ini
Show inline comments
 
@@ -136,6 +136,7 @@ level = INFO
 
handlers = console
 
qualname = routes.middleware
 
# "level = DEBUG" logs the route matched and routing variables.
 
propagate = 0
 

	
 
[logger_rhodecode]
 
level = DEBUG
rhodecode/config/deployment.ini_tmpl
Show inline comments
 
@@ -136,6 +136,7 @@ level = INFO
 
handlers = console
 
qualname = routes.middleware
 
# "level = DEBUG" logs the route matched and routing variables.
 
propagate = 0
 

	
 
[logger_rhodecode]
 
level = DEBUG
rhodecode/model/db.py
Show inline comments
 
@@ -88,6 +88,8 @@ class Repository(Base):
 
    user = relation('User')
 
    fork = relation('Repository', remote_side=repo_id)
 
    repo_to_perm = relation('RepoToPerm', cascade='all')
 
    stats = relation('Statistics', cascade='all')
 

	
 

	
 
    def __repr__(self):
 
        return "<Repository('id:%s:%s')>" % (self.repo_id, self.repo_name)
 
@@ -134,5 +136,5 @@ class Statistics(Base):
 
    commit_activity_combined = Column("commit_activity_combined", BLOB(), nullable=False)#JSON data
 
    languages = Column("languages", BLOB(), nullable=False)#JSON data
 

	
 
    repository = relation('Repository')
 
    repository = relation('Repository', single_parent=True)
 

	
0 comments (0 inline, 0 general)