Skip to content

Commit ca037c2

Browse files
authored
Merge pull request #110 from JBerggren/patch-1
Fix invalid configurations in deployment.md because of missing quotes
2 parents 29c37fb + 119ab28 commit ca037c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/docs/getting-started/deployment.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By default Zenoh applications are configured to communicate peer to peer (`peer`
1919
**Configuration**
2020
```
2121
{
22-
mode: peer,
22+
mode: "peer",
2323
}
2424
```
2525

@@ -34,7 +34,7 @@ Zenoh applications in `peer` mode join multicast group `224.0.0.224` on UDP port
3434
**Configuration**
3535
```
3636
{
37-
mode: peer,
37+
mode: "peer",
3838
scouting: {
3939
multicast: {
4040
enabled: true,
@@ -54,7 +54,7 @@ Zenoh applications in `peer` mode forward all local applications and routers tha
5454
**Configuration**
5555
```
5656
{
57-
mode: peer,
57+
mode: "peer",
5858
connect: {
5959
endpoints: ["tcp/192.168.1.1:7447", "tcp/192.168.1.2:7447"],
6060
},
@@ -77,7 +77,7 @@ Communicating peer to peer implies establishing multiple sessions with multiple
7777
**Configuration**
7878
```
7979
{
80-
mode: client,
80+
mode: "client",
8181
}
8282
```
8383

@@ -88,7 +88,7 @@ Zenoh applications in `client` mode run `multicast` scouting to discover Zenoh r
8888
**Configuration**
8989
```
9090
{
91-
mode: client,
91+
mode: "client",
9292
connect: {
9393
endpoints: ["tcp/192.168.1.1:7447", "tcp/192.168.1.2:7447"],
9494
},
@@ -104,7 +104,7 @@ In a mesh network, applications cannot directly connect to each other. Peer to p
104104
**Configuration**
105105
```
106106
{
107-
mode: peer,
107+
mode: "peer",
108108
routing: {
109109
peer: {
110110
mode: "linkstate",

0 commit comments

Comments
 (0)