From f16f213fccc19950e6e523609bb560e1e567e5ef Mon Sep 17 00:00:00 2001 From: shihanzhang Date: Tue, 25 Feb 2014 15:29:04 +0800 Subject: [PATCH] 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 --- etc/nova/cells.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/nova/cells.json b/etc/nova/cells.json index 2c8016e27cc4..cc74930d4d7a 100644 --- a/etc/nova/cells.json +++ b/etc/nova/cells.json @@ -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 } }