commit/galaxy-central: natefoo: A missing flush caused the test for whether a dataset could be removed from disk on user purge to always return False.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/1b78e2c9aff5/ changeset: 1b78e2c9aff5 user: natefoo date: 2011-08-16 19:03:10 summary: A missing flush caused the test for whether a dataset could be removed from disk on user purge to always return False. affected #: 1 file (37 bytes) --- a/lib/galaxy/web/controllers/dataset.py Tue Aug 16 12:33:35 2011 -0400 +++ b/lib/galaxy/web/controllers/dataset.py Tue Aug 16 13:03:10 2011 -0400 @@ -950,6 +950,7 @@ hda.purged = True trans.sa_session.add( hda ) trans.log_event( "HDA id %s has been purged" % hda.id ) + trans.sa_session.flush() # Don't delete anything if there are active HDAs or any LDDAs, even if # the LDDAs are deleted. Let the cleanup scripts get it in the latter # case. 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