commit/galaxy-central: davebgx: Fix issue where install and test framework would hang if a repository was not found in the database.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/72774adb2ae8/ Changeset: 72774adb2ae8 User: davebgx Date: 2014-04-20 05:24:12 Summary: Fix issue where install and test framework would hang if a repository was not found in the database. Affected #: 1 file diff -r 991f6ba12df4dddcded9a813bd5e55e70ad31841 -r 72774adb2ae8504d51200d0e3134ba9aa1e44aaa test/install_and_test_tool_shed_repositories/base/util.py --- a/test/install_and_test_tool_shed_repositories/base/util.py +++ b/test/install_and_test_tool_shed_repositories/base/util.py @@ -598,8 +598,8 @@ # Get the repository record now that the tests that install it have completed. repository = get_repository( name, owner, changeset_revision ) if repository is None: - error_message = 'Error getting revision %s of repository %s owned by %s: %s' % ( changeset_revision, name, owner, str( e ) ) - log.exception( error_message ) + error_message = 'Error getting revision %s of repository %s owned by %s: An entry for the repository was not found in the database.' % ( changeset_revision, name, owner ) + log.error( error_message ) return repository, error_message def is_excluded( exclude_list_dicts, name, owner, changeset_revision, encoded_repository_metadata_id ): 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