Fixing broken JSON - removing trailing comma

Change-Id: I921e95477ba66c676f523309fbb9019a5fa13734
This commit is contained in:
Jamie Hannaford 2014-02-24 13:24:40 +01:00
parent fedbd81357
commit 4499cce3a7

View File

@ -1,26 +1,26 @@
{
"parent": {
"name": "parent",
"api_url": "http://api.example.com:8774",
"transport_url": "rabbit://rabbit.example.com",
"weight_offset": 0.0,
"weight_scale": 1.0,
"is_parent": true,
},
"cell1": {
"name": "cell1",
"api_url": "http://api.example.com:8774",
"transport_url": "rabbit://rabbit1.example.com",
"weight_offset": 0.0,
"weight_scale": 1.0,
"is_parent": false,
},
"cell2": {
"name": "cell2",
"api_url": "http://api.example.com:8774",
"transport_url": "rabbit://rabbit2.example.com",
"weight_offset": 0.0,
"weight_scale": 1.0,
"is_parent": false,
}
}
"parent":{
"name":"parent",
"api_url":"http://api.example.com:8774",
"transport_url":"rabbit://rabbit.example.com",
"weight_offset":0.0,
"weight_scale":1.0,
"is_parent":true
},
"cell1":{
"name":"cell1",
"api_url":"http://api.example.com:8774",
"transport_url":"rabbit://rabbit1.example.com",
"weight_offset":0.0,
"weight_scale":1.0,
"is_parent":false
},
"cell2":{
"name":"cell2",
"api_url":"http://api.example.com:8774",
"transport_url":"rabbit://rabbit2.example.com",
"weight_offset":0.0,
"weight_scale":1.0,
"is_parent":false
}
}