mflopez79 opened a new pull request #653: URL: https://github.com/apache/couchdb-documentation/pull/653
## Overview Following the clustering guide, I found out that running the connectivity erlang command between nodes using an IP address will fail with like ``` ([email protected])1> net_kernel:connect_node([email protected]). * 1: syntax error before: '.' ``` if the `node_name@ip` contains single quotes will work ``` ([email protected])1> net_kernel:connect_node('[email protected]'). true ``` As the documentation doesn't contain single quotes, I recommend adding them (the actual example fails as it is as it contains an IP) ## Testing recommendations Follow the clustering guide `2.2.2.2. Confirming connectivity between nodes` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
