1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/c42bfba51ea0/ changeset: c42bfba51ea0 user: greg date: 2013-02-01 19:13:09 summary: When resetting all metadata on a repository in the tool shed, restrict display of error messages to those associated with the tip. affected #: 1 file diff -r 7250bc892ede728688c010493a4019ec27d2decd -r c42bfba51ea0eb21cf83b19a193104b3ce4fbfd5 lib/galaxy/util/shed_util_common.py --- a/lib/galaxy/util/shed_util_common.py +++ b/lib/galaxy/util/shed_util_common.py @@ -3154,7 +3154,9 @@ resetting_all_metadata_on_repository=True, updating_installed_repository=False, persist=False ) - invalid_file_tups.extend( invalid_tups ) + # We'll only display error messages for the repository tip (it may be better to display error messages for each installable changeset revision). + if current_metadata_dict == repository.tip( trans.app ): + invalid_file_tups.extend( invalid_tups ) if current_metadata_dict: if not metadata_changeset_revision and not metadata_dict: # We're at the first change set in the change log. 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.