When using an http_source I am seeing an issue whe...
# general
p
When using an http_source I am seeing an issue where the size is larger than expected.. using curl I get one size, downloading local I get another size.. can I make pants tell me the size it received?
w
are you using
-L
with curl to follow links?
p
Yup. Used
Copy code
curl -L $URL | tee >(wc -c) >(shasum -a 256) >/dev/null
Works for the other 3 http sources I have 🤔
Hmmm the curl command gave me the wrong values running wc -c and shasum -a 256 against the file worked..