I recently deployed the fabric network using Docker-compose, I was trying to simulate a downed peer. Essentially this is what happens:
- 4 peers are brought online using docker-compose running a fabric network
- 1 peer i.e the 4th peer goes down (done via docker stop command)
- Invoke transactions are sent to the root peer which is verified by querying the peers after sometime (excluding the downed peer).
- The downed peer is brought back up with docker start. Query transaction run fine on the always on peers but fail on the newly woken up peer.
Why isn't the 4th peer synchronizing the blockchain, once its up.Is there a step to be taken to ensure it does? Or is it discarded as a rogue peer.