commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/cfdf54c48ecd/ Changeset: cfdf54c48ecd Branch: stable User: dan Date: 2013-12-02 20:48:30 Summary: Fix for missing eggs.require in lib/galaxy/exceptions/__init__.py. Affected #: 1 file diff -r a0f7e0e5f05af4112ded852cf61c138582c99c04 -r cfdf54c48ecdcbe5bad4a9af14822a88d7fd6082 lib/galaxy/exceptions/__init__.py --- a/lib/galaxy/exceptions/__init__.py +++ b/lib/galaxy/exceptions/__init__.py @@ -1,6 +1,10 @@ """ Custom exceptions for Galaxy """ + +from galaxy import eggs +eggs.require( "Paste" ) + from paste import httpexceptions class MessageException( Exception ): https://bitbucket.org/galaxy/galaxy-central/commits/3e76aceca9d0/ Changeset: 3e76aceca9d0 Branch: stable User: natefoo Date: 2014-01-09 16:46:01 Summary: Fix username argument to PostgreSQL connection in pgcleanup.py Affected #: 1 file diff -r cfdf54c48ecdcbe5bad4a9af14822a88d7fd6082 -r 3e76aceca9d0ab563e285d630dd7575140236b0d scripts/cleanup_datasets/pgcleanup.py --- a/scripts/cleanup_datasets/pgcleanup.py +++ b/scripts/cleanup_datasets/pgcleanup.py @@ -105,7 +105,7 @@ url = make_url(self.config.database_connection) log.info('Connecting to database with URL: %s' % url) - args = url.translate_connect_args() + args = url.translate_connect_args( username='user' ) args.update(url.query) assert url.get_dialect().name == 'postgresql', 'This script can only be used with PostgreSQL.' Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org