1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/34e42ae79232/ changeset: 34e42ae79232 user: greg date: 2013-01-18 21:46:22 summary: Filter request params to only those necessary when redirecting to monitor installing tool shed repositories. affected #: 1 file diff -r b238d26ca9269aec91e26370348b89ee14c3d1ae -r 34e42ae792320b1ee2471f11f341ac55445f52e0 lib/galaxy/webapps/galaxy/controllers/admin_toolshed.py --- a/lib/galaxy/webapps/galaxy/controllers/admin_toolshed.py +++ b/lib/galaxy/webapps/galaxy/controllers/admin_toolshed.py @@ -977,9 +977,10 @@ return trans.show_error_message( 'Invalid repository specified.' ) tool_shed_url = suc.get_url_from_repository_tool_shed( trans.app, repository ) if repository.status in [ trans.model.ToolShedRepository.installation_status.CLONING ]: + tool_shed_repository_ids = [ repository_id ] return trans.response.send_redirect( web.url_for( controller='admin_toolshed', action='monitor_repository_installation', - **kwd ) ) + tool_shed_repository_ids=tool_shed_repository_ids ) ) if repository.can_install and operation == 'install': # Send a request to the tool shed to install the repository. url = suc.url_join( tool_shed_url, 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.