2017-01-10T16:51:26Z [1] INFO using endpoint 'http+tcp://0.0.0.0:5001' for non-encrypted requests2017-01-10T16:51:26Z [1] INFO ArangoDB (version 3.1.7 [linux]) is ready for business. Have fun!2017-01-10T16:51:27Z [1] INFO {agency} Entering gossip phase ...2017-01-10T16:51:29Z [1] INFO {agency} Adding 0be3be42-10d6-4d88-a032-2c9f52c8e241(tcp://localhost:5003) to agent pool2017-01-10T16:51:30Z [1] INFO {agency} Adding 2e90441b-8bc3-4df4-876c-2dececa0e052(tcp://localhost:5002) to agent pool2017-01-10T16:51:31Z [1] ERROR {cluster} cannot create connection to server '' at endpoint 'tcp://localhost:5003'2017-01-10T16:51:31Z [1] ERROR {cluster} cannot create connection to server '' at endpoint 'tcp://localhost:5002'2017-01-10T16:51:35Z [1] ERROR {cluster} cannot create connection to server '' at endpoint 'tcp://localhost:5003'2017-01-10T16:51:35Z [1] ERROR {cluster} cannot create connection to server '' at endpoint 'tcp://localhost:5002'# Agent 1docker service create --name arango-agent-1 --restart-max-attempts ${ARANGODB_RETRIES} --env ARANGO_ROOT_PASSWORD=${ARANGODB_PASSWORD} --network arango-network --constraint 'node.hostname==node1.local.lan' --replicas 1 arangodb:3.1.7 arangod --server.endpoint tcp://0.0.0.0:5001 --server.authentication ${ARANGODB_AUTH} --server.jwt-secret ${ARANGO_JWT_SECRET} --agency.size 3 --agency.supervision true --agency.activate true# Agent 2docker service create --name arango-agent-2 --restart-max-attempts ${ARANGODB_RETRIES} --env ARANGO_ROOT_PASSWORD=${ARANGODB_PASSWORD} --network arango-network --constraint 'node.hostname==node1.local.lan' --replicas 1 arangodb:3.1.7 arangod --server.endpoint tcp://0.0.0.0:5002 --server.authentication ${ARANGODB_AUTH} --server.jwt-secret ${ARANGO_JWT_SECRET} --agency.size 3 --agency.supervision true --agency.activate true# Agent 3docker service create --name arango-agent-3 --restart-max-attempts ${ARANGODB_RETRIES} --env ARANGO_ROOT_PASSWORD=${ARANGODB_PASSWORD} --network arango-network --constraint 'node.hostname==node1.local.lan' --replicas 1 arangodb:3.1.7 arangod --server.endpoint tcp://0.0.0.0:5003 --server.authentication ${ARANGODB_AUTH} --server.jwt-secret ${ARANGO_JWT_SECRET} --agency.size 3 --agency.supervision true --agency.activate true --agency.endpoint tcp://arango-agent-1:5001 --agency.endpoint tcp://arango-agent-2:5002 --agency.endpoint tcp://arango-agent-3:50032017-01-16T17:45:31Z [1] INFO ArangoDB (version 3.1.8 [linux]) is ready for business. Have fun!2017-01-16T17:45:31Z [1] INFO {agency} Entering gossip phase ...2017-01-16T17:45:31Z [1] INFO {agency} Adding 1d148ff1-e923-4f0e-9921-6818c2387822(tcp://arango-agent-2:5002) to agent pool2017-01-16T17:45:31Z [1] INFO {agency} Adding 72d76ea1-a67e-4cbe-add4-240bbba0ba93(tcp://arango-agent-3:5003) to agent pool2017-01-16T17:45:31Z [1] INFO {agency} Adding c63e1c35-1349-480d-bb1f-7dfce40aa2af(tcp://arango-agent-1:5001) to agent pool2017-01-16T17:45:31Z [1] FATAL {agency} Too many peers in pool: 4>3