missing etag header when putting standalone attachments
-------------------------------------------------------
Key: COUCHDB-711
URL: https://issues.apache.org/jira/browse/COUCHDB-711
Project: CouchDB
Issue Type: Bug
Components: HTTP Interface
Affects Versions: 0.10.1
Reporter: Niko Uphoff
when putting standalone attachments there is no etag header in the response
_________________________________________________________________
curl -X PUT -i http://127.0.0.1:5984/test/test/attachment \
-H 'Content-Type: text/plain' \
--data 'some text'
will just return
HTTP/1.1 201 Created
Server: CouchDB/0.10.1 (Erlang OTP/R13B)
Location: http://127.0.0.1:5984/test/test/attachment
Date: Fri, 26 Mar 2010 14:17:39 GMT
Content-Type: text/plain;charset=utf-8
Content-Length: 67
Cache-Control: must-revalidate
{"ok":true,"id":"test","rev":"1-3fed07956fe933df5a6dd8dd05a73ca7"}
_________________________________________________________________
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.