commit/galaxy-central: dannon: Correctly pass flush through to the hdamanager's purge method.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/beaff6208fe8/ Changeset: beaff6208fe8 User: dannon Date: 2015-01-22 19:45:50+00:00 Summary: Correctly pass flush through to the hdamanager's purge method. Affected #: 1 file diff -r 5f5ef6ec6f9c83fd7132b40ef3dc9a01fb07a34d -r beaff6208fe8839468c0968de0d869dbb83255c3 lib/galaxy/managers/hdas.py --- a/lib/galaxy/managers/hdas.py +++ b/lib/galaxy/managers/hdas.py @@ -145,14 +145,14 @@ #def by_user( self, trans, user ): # pass - def purge( self, trans, hda ): + def purge( self, trans, hda, flush=True ): """ Purge this HDA and the dataset underlying it. """ # error here if disallowed - before jobs are stopped #TODO: poss. move to DatasetAssociationManager self.dataset_manager.error_unless_dataset_purge_allowed( trans, hda ) - super( HDAManager, self ).purge( trans, hda, flush=True ) + super( HDAManager, self ).purge( trans, hda, flush=flush ) # signal to stop the creating job? if hda.creating_job_associations: @@ -354,7 +354,7 @@ 'display_apps', 'display_types', 'visualizations', - + #'url', 'download_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.
participants (1)
-
commits-noreply@bitbucket.org