According to the Ring spec, the content-length header value should be a string: https://github.com/mmcgrana/ring/blob/master/SPEC#L83.
This is not the case when using a file as one of the param values, to create a multi-part request:
See the snippet below.
r1 is a request with a long content-length (not desired).
r2 is a request with a string content-length header value (desired).
According to the Ring spec, the content-length header value should be a string: https://github.com/mmcgrana/ring/blob/master/SPEC#L83. This is not the case when using a file as one of the param values, to create a multi-part request:
See the snippet below. r1 is a request with a long content-length (not desired). r2 is a request with a string content-length header value (desired).