I’m trying a multipart request. With clj-http it works fine, but with aleph I get back a 400 with a long stacktrace I don’t understand… any clues?
@borkdude which version of aleph do you use? I believe multipart requests were entirely broken in aleph until 0.4.5-alpha4
[aleph “0.4.4”]
I’ll try the newest…
seems to work!
Question, regarding manifold/stream, how to apply a side effect for every msg inside an stream?
I was trying to do something like:
(s/map (fn [value] (do (println value) value)) stream)
that should work @jimenezsaezjoseantoni
though you might need to consume your stream with (s/consume <stream>)
or (s/reduce (fn [c _] (inc c)) 0 <stream>)
or something
Yep, i was testing taking manually with (s/take! stream)