1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/7b1b6e81b175/ changeset: 7b1b6e81b175 user: natefoo date: 2012-09-11 19:33:20 summary: Do not report the disk usage of purged HDAs in history disk usage. affected #: 1 file diff -r 2b4111248390ae6340f4bec54d0cff29f48665fb -r 7b1b6e81b1756234001eb1c3a32d7a9b98da92c3 lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -685,6 +685,7 @@ db_session = object_session( self ) rval = db_session.query( func.sum( db_session.query( HistoryDatasetAssociation.dataset_id, Dataset.total_size ).join( Dataset ) .filter( HistoryDatasetAssociation.table.c.history_id == self.id ) + .filter( HistoryDatasetAssociation.purged != True ) .filter( Dataset.purged != True ) .distinct().subquery().c.total_size ) ).first()[0] if rval is None: 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.