Remove trailing comma from sample JSON

The etc/nova/cells.json sample configuration file contains a trailing
comma on some elements. This is a syntax error, this change corrects the
problem.

Change-Id: I7a8200e8b7704e4377ce597d6beba91b42286469
Closes-bug: #1283718
This commit is contained in:
shihanzhang 2014-02-25 15:29:04 +08:00
parent 6b39630e6b
commit f16f213fcc
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
"transport_url": "rabbit://rabbit.example.com", "transport_url": "rabbit://rabbit.example.com",
"weight_offset": 0.0, "weight_offset": 0.0,
"weight_scale": 1.0, "weight_scale": 1.0,
"is_parent": true, "is_parent": true
}, },
"cell1": { "cell1": {
"name": "cell1", "name": "cell1",
@ -13,7 +13,7 @@
"transport_url": "rabbit://rabbit1.example.com", "transport_url": "rabbit://rabbit1.example.com",
"weight_offset": 0.0, "weight_offset": 0.0,
"weight_scale": 1.0, "weight_scale": 1.0,
"is_parent": false, "is_parent": false
}, },
"cell2": { "cell2": {
"name": "cell2", "name": "cell2",
@ -21,6 +21,6 @@
"transport_url": "rabbit://rabbit2.example.com", "transport_url": "rabbit://rabbit2.example.com",
"weight_offset": 0.0, "weight_offset": 0.0,
"weight_scale": 1.0, "weight_scale": 1.0,
"is_parent": false, "is_parent": false
} }
} }