StringMapDeserialzier was implemented to handle wrong syntax in fabric.yaml, when maps of object were defined as map of array of a single object.
peers:
- peer1:
...
- peer2
...
should be (in yaml syntax)
peers:
peer1:
...
peer2:
...
StringMapDeserialzier should have issue deprecation warning asking to update fabric.yaml to valid map format
StringMapDeserialzier was implemented to handle wrong syntax in fabric.yaml, when maps of object were defined as map of array of a single object.
should be (in yaml syntax)
StringMapDeserialzier should have issue deprecation warning asking to update fabric.yaml to valid map format