Fix key type of `used` dict in JSON responses

JSON regulates key type to be string.

Co-Authored-By: Matt Peters <matt.peters@windriver.com>

Partially-implements: blueprint network-segment-range-management
Change-Id: I946a6ee14cef4f6b2e7e29ac644b31e1c340e83b
This commit is contained in:
Kailun Qin 2019-01-10 02:01:03 +08:00
parent 629248149d
commit 813a5ce92d
1 changed files with 4 additions and 4 deletions

View File

@ -351,8 +351,8 @@ line with the new resources previously introduced:
"physical_network": "physnet1",
"minimum": 100,
"maximum": 105,
"used": {100: "07ac1127ee9647d48ce2626867104a13",
101: "d4fa62aa47d340d98d076801aa7e6ec4"},
"used": {"100": "07ac1127ee9647d48ce2626867104a13",
"101": "d4fa62aa47d340d98d076801aa7e6ec4"},
"available": [102, 103, 104, 105],
}
]
@ -376,8 +376,8 @@ line with the new resources previously introduced:
"physical_network": "physnet1",
"minimum": 100,
"maximum": 105,
"used": {100: "07ac1127ee9647d48ce2626867104a13",
101: "d4fa62aa47d340d98d076801aa7e6ec4"},
"used": {"100": "07ac1127ee9647d48ce2626867104a13",
"101": "d4fa62aa47d340d98d076801aa7e6ec4"},
"available": [102, 103, 104, 105],
}
}