Comment 0 for bug 781909

Revision history for this message
gholt (gholt) wrote :

swift/common/bufferedhttp.py should str header values to be Python 2.7 compatible. Python's httplib expects all header values to be strings and we pass in ints quiet often. This hasn't been a problem with Python 2.6's httplib but is a problem with 2.7's. Easiest fix for us is to have bufferhttp str all the values for us.