ENT-2439 Fix compression in serialization (#3825)

* ENT-2439 Fix compression in serialization
This commit is contained in:
Rick Parker
2018-08-22 10:37:18 +01:00
committed by GitHub
parent 96d645c316
commit 1d05c16942
10 changed files with 83 additions and 38 deletions

View File

@ -83,7 +83,7 @@ class BlobInspector : Runnable {
?: throw IllegalArgumentException("Error: this input does not appear to be encoded in Corda's AMQP extended format, sorry.")
if (schema) {
val envelope = DeserializationInput.getEnvelope(bytes.sequence())
val envelope = DeserializationInput.getEnvelope(bytes.sequence(), SerializationDefaults.STORAGE_CONTEXT.encodingWhitelist)
out.println(envelope.schema)
out.println()
out.println(envelope.transformsSchema)