akka/akka-core
JsonObjectParser rejects some valid JSON Array streams
Ouverte
#25 673 ouverte le 21 sept. 2018
3 - in progresshelp wantedt:stream
Métriques du dépôt
- Stars
- (13 277 étoiles)
- Métriques de merge PR
- (Merge moyen 8j 19h) (10 PRs mergées en 30 j)
Description
When attempting to feed the following entity:
[ "abc", "def", "ghi", "klm" ]
(which is a valid JSON Array, even though not of objects) to an Akka HTTP endpoint that specifies the
entity(asSourceOf[String]) { source ⇒ … }
directive, JsonObjectParser fails to parse and provide a Source[ByteString, _] that can be demarshalled as JsValues and eventually strings.
Furthermore, while using the directive for that usage might be slower than using a dedicated framing primitive, it's a bit dangerous that the "obvious path" compiles but fails to work. (incoming PR)