Skip to content

Commit 1f13a17

Browse files
authored
Merge pull request #5252 from garlick/issue#5249
flux-config-bootstrap(5): fix TOML error
2 parents d9712cf + b8e5252 commit 1f13a17

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

doc/man5/flux-config-bootstrap.rst

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,8 @@ The following example is a simple, two node cluster with a fully specified
159159
curve_cert = "/etc/flux/system/curve.cert"
160160

161161
hosts = [
162-
{
163-
host="foo",
164-
bind="tcp://eth0:9001",
165-
connect="tcp://10.0.1.1:9001"
166-
},
167-
{
168-
host = "bar"
169-
},
162+
{ host="foo", bind="tcp://eth0:9001", connect="tcp://10.0.1.1:9001" },
163+
{ host = "bar" },
170164
]
171165

172166

@@ -188,14 +182,11 @@ a different network interface configuration compared to its peers.
188182
default_connect = "tcp://e%h:%p"
189183

190184
hosts = [
191-
{ # Management requires non-default config
192-
host="test0",
193-
bind="tcp://en4:9001",
194-
connect="tcp://test-mgmt:9001"
195-
},
196-
{ # Other nodes use defaults
197-
host = "test[1-255]"
198-
},
185+
# Management requires non-default config
186+
{ host="test0", bind="tcp://en4:9001", connect="tcp://test-mgmt:9001" },
187+
188+
# Other nodes use defaults
189+
{ host = "test[1-255]" },
199190
]
200191

201192
The following example is a 256 node cluster that uses the ``parent`` key to

0 commit comments

Comments
 (0)