view .hgignore @ 6610:db3f0ba75b4a

Change checkpoint_data and restore_connection_on_error to subtransaction checkpoint_data and restore_connection_on_error used to commit() and rollback() the db connection. This causes additional I/O and load. Changed them to use 'SAVEPOINT name' and 'ROLLBACK TO name' to get a faster method for handling errors within a tranaction. One thing to note is that postgresql (unlike SQL std) doesn't overwrite an older savepoint with he same name. It keeps all savepoints but only rolls back to the newest one with a given name. This could be a resource issue. I left a commented out release statement in case somebody runs into an issue due to too many savepoints. I expect it to slow down the import but....
author John Rouillard <rouilj@ieee.org>
date Sat, 29 Jan 2022 11:29:36 -0500
parents b57c3d50505b
children 18445cd132c8
line wrap: on
line source

syntax: glob

*.orig
*.rej
*~
\#*\#
.\#*
*.swp
*.tmp
*.pyd
*.pyc
*.pyo
build
demo
dist
MANIFEST
roundup.egg-info
_test_*
*.cover
share/doc/roundup/html
doc/FAQ.html
doc/admin_guide.html
doc/announcement.html
doc/customizing.html
doc/design.html
doc/developers.html
doc/features.html
doc/glossary.html
doc/implementation.html
doc/index.html
doc/installation.html
doc/mysql.html
doc/overview.html
doc/postgresql.html
doc/security.html
doc/tracker_templates.html
doc/upgrading.html
doc/user_guide.html
doc/whatsnew-0.7.html
doc/whatsnew-0.8.html
doc/xmlrpc.html
locale/*.mo
locale/*.bak
locale/*.poedit
website/www/_tmp/
website/www/COPYING.txt
website/www/docs
website/www/html/

Roundup Issue Tracker: http://roundup-tracker.org/