diff --git a/server/config/config.go b/server/config/config.go
index 80553ed792b4..dee41b86de54 100644
--- a/server/config/config.go
+++ b/server/config/config.go
@@ -234,6 +234,8 @@ func (c *ServerConfig) VerifyBootstrap() error {
 // VerifyJoinExisting sanity-checks the initial config for join existing cluster
 // case and returns an error for things that should never happen.
 func (c *ServerConfig) VerifyJoinExisting() error {
+	// The member has announced its peer urls to the cluster before starting; no need to
+	// set the configuration again.
 	if err := c.hasLocalMember(); err != nil {
 		return err
 	}