Skip to content

Commit

Permalink
fix gateway heartbeat (lumi-openlcoud#5)
Browse files Browse the repository at this point in the history
Hearbeat payload contains an object `data` instead of an array `params`.
  • Loading branch information
hobbyquaker authored Oct 27, 2018
1 parent 22e670c commit 2508360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/docs/development/gateway-LAN-communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The gateway heatbeat is sent via **multicast** to **(IP: 224.0.0.50 Port: 9898**
"model":"gateway.v3",
"sid":"xxxxxxxx",
"token":"1234567890abcdef", //random string generated by the gateway
"params":[{"ip":"172.22.4.130"}] //Gateway IP address
"data": {"ip":"172.22.4.130"} //Gateway IP address
}
```

Expand Down

0 comments on commit 2508360

Please sign in to comment.