commit/galaxy-central: natefoo: Quota refactor bugfixes.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/0073d0897a18/ changeset: 0073d0897a18 user: natefoo date: 2011-09-28 15:26:30 summary: Quota refactor bugfixes. affected #: 2 files (-1 bytes) --- a/lib/galaxy/actions/admin.py Tue Sep 27 14:16:52 2011 -0400 +++ b/lib/galaxy/actions/admin.py Wed Sep 28 09:26:30 2011 -0400 @@ -41,7 +41,7 @@ self.sa_session.add( quota ) # If this is a default quota, create the DefaultQuotaAssociation if params.default != 'no': - self.app.quota_agent.set_default_quota( params.default, params.quota ) + self.app.quota_agent.set_default_quota( params.default, quota ) else: # Create the UserQuotaAssociations for user in [ self.sa_session.query( self.app.model.User ).get( x ) for x in params.in_users ]: --- a/lib/galaxy/web/controllers/admin.py Tue Sep 27 14:16:52 2011 -0400 +++ b/lib/galaxy/web/controllers/admin.py Wed Sep 28 09:26:30 2011 -0400 @@ -424,7 +424,7 @@ params = self.get_quota_params( kwd ) if params.get( 'create_quota_button', False ): try: - quota, message = self._create_quota( trans, params ) + quota, message = self._create_quota( params ) return trans.response.send_redirect( web.url_for( controller='admin', action='quotas', webapp=params.webapp, 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)
-
Bitbucket