mirror of https://github.com/hashicorp/consul
test: ensure the node name is a valid dns name (#6424)
The space in the node name was making every test emit a useless warning.pull/6428/head
parent
3be88df207
commit
7deaba63e1
|
@ -348,7 +348,7 @@ func TestConfig(sources ...config.Source) *config.RuntimeConfig {
|
|||
bootstrap = true
|
||||
server = true
|
||||
node_id = "` + nodeID + `"
|
||||
node_name = "Node ` + nodeID + `"
|
||||
node_name = "Node-` + nodeID + `"
|
||||
connect {
|
||||
enabled = true
|
||||
ca_config {
|
||||
|
|
Loading…
Reference in New Issue