Fix JsonObjectDecoder with '[' starting chunk

Issue: SPR-15013
This commit is contained in:
Sebastien Deleuze
2016-12-14 14:38:19 +01:00
parent b70071fdda
commit 4021d239ab
2 changed files with 13 additions and 3 deletions

View File

@@ -212,9 +212,6 @@ class JsonObjectDecoder extends AbstractDecoder<DataBuffer> {
}
}
if (this.input.readableBytes() == 0) {
this.index = 0;
}
return Flux.fromIterable(chunks);
}