mirror of
https://github.com/corda/corda.git
synced 2025-06-15 05:38:14 +00:00
ENT-2439 Fix compression in serialization (#3825)
* ENT-2439 Fix compression in serialization
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user