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:
parent
6b39630e6b
commit
f16f213fcc
@ -5,7 +5,7 @@
|
||||
"transport_url": "rabbit://rabbit.example.com",
|
||||
"weight_offset": 0.0,
|
||||
"weight_scale": 1.0,
|
||||
"is_parent": true,
|
||||
"is_parent": true
|
||||
},
|
||||
"cell1": {
|
||||
"name": "cell1",
|
||||
@ -13,7 +13,7 @@
|
||||
"transport_url": "rabbit://rabbit1.example.com",
|
||||
"weight_offset": 0.0,
|
||||
"weight_scale": 1.0,
|
||||
"is_parent": false,
|
||||
"is_parent": false
|
||||
},
|
||||
"cell2": {
|
||||
"name": "cell2",
|
||||
@ -21,6 +21,6 @@
|
||||
"transport_url": "rabbit://rabbit2.example.com",
|
||||
"weight_offset": 0.0,
|
||||
"weight_scale": 1.0,
|
||||
"is_parent": false,
|
||||
"is_parent": false
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user