commit/galaxy-central: dannon: Followup from commentary on PR394, cleaned up incorrect log.exception usage in base controller.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/c4404368f34d/ Changeset: c4404368f34d User: dannon Date: 2014-05-19 18:47:10 Summary: Followup from commentary on PR394, cleaned up incorrect log.exception usage in base controller. Affected #: 1 file diff -r 9afc3e4a3561166beb69d344178338fa954ad5ee -r c4404368f34df8089812f14dff298092e3ba7a81 lib/galaxy/web/base/controller.py --- a/lib/galaxy/web/base/controller.py +++ b/lib/galaxy/web/base/controller.py @@ -125,8 +125,8 @@ assert item_class is not None item = trans.sa_session.query( item_class ).get( decoded_id ) assert item is not None - except Exception, exc: - log.exception( "Invalid %s id ( %s ) specified: %s" % ( class_name, id, str( exc ) ) ) + except Exception: + log.exception( "Invalid %s id ( %s ) specified." % ( class_name, id ) ) raise MessageException( "Invalid %s id ( %s ) specified" % ( class_name, id ), type="error" ) if check_ownership or check_accessible: @@ -204,7 +204,7 @@ except MessageException, e: raise HTTPBadRequest( detail=e.err_msg ) except Exception, e: - log.exception( "Exception in get_object check for %s %s: %s" % ( class_name, str( id ), str( e ) ) ) + log.exception( "Exception in get_object check for %s %s." % ( class_name, str( id ) ) ) raise HTTPInternalServerError( comment=str( e ) ) def validate_in_users_and_groups( self, trans, payload ): @@ -796,8 +796,8 @@ if expose_dataset_path: try: hda_dict[ 'file_name' ] = hda.file_name - except objectstore.ObjectNotFound, onf: - log.exception( 'objectstore.ObjectNotFound, HDA %s: %s', hda.id, onf ) + except objectstore.ObjectNotFound: + log.exception( 'objectstore.ObjectNotFound, HDA %s.', hda.id ) hda_dict[ 'download_url' ] = url_for( 'history_contents_display', history_id = trans.security.encode_id( hda.history.id ), 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