Roundup Tracker - Issues

Message2005

Author glandrum
Recipients
Date 2005-07-21.17:49:48
Message-id
In-reply-to
I encountered this while configuring my tracker (using
a metakit backend) to integrate with svn.

Here's the exception from the logfile:
2005-07-21 10:43:07,974 ERROR top level
Traceback (most recent call last):
  File "/home2/svn/RD/hooks/notify-roundup.py", line
363, in ?
    svn.core.run_app(main)
  File "/usr/local/lib/svn-python/svn/core.py", line
40, in run_app
    return apply(func, (pool,) + args, kw)
  File "/home2/svn/RD/hooks/notify-roundup.py", line
63, in main
    notify_local(cfg.get('local', 'tracker-home'), repos)
  File "/home2/svn/RD/hooks/notify-roundup.py", line
118, in notify_local
    db.close()
  File
"/usr/local/lib/python2.3/site-packages/roundup/backends/back_metakit.py",
line 311, \
in close
    self.indexer.close()

The straightforward solution is to replace the
offending function call (line 311 of back_metakit.py) with:
        if hasattr(self.indexer,'close'):
          self.indexer.close()
 
History
Date User Action Args
2009-02-03 14:21:26adminlinkissue1242477 messages
2009-02-03 14:21:26admincreate