1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/3bf36025f174/ Changeset: 3bf36025f174 User: dan Date: 2013-12-06 18:15:45 Summary: Fix for determining pre-existing trans.app.model.GalaxySessionToHistoryAssociation when switching histories. Affected #: 1 file diff -r bba4f8883afb62b142dd9ffa229db387f7e9f857 -r 3bf36025f174e2b2a47d33be555026be343e37c5 lib/galaxy/webapps/galaxy/controllers/history.py --- a/lib/galaxy/webapps/galaxy/controllers/history.py +++ b/lib/galaxy/webapps/galaxy/controllers/history.py @@ -377,7 +377,7 @@ galaxy_session = trans.get_galaxy_session() try: association = trans.sa_session.query( trans.app.model.GalaxySessionToHistoryAssociation ) \ - .filter_by( session_id=galaxy_session.id, history_id=trans.security.decode_id( new_history.id ) ) \ + .filter_by( session_id=galaxy_session.id, history_id=new_history.id ) \ .first() except: association = 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.