Return complete reservation id

Changed the length of the provisioned field for the
molteniron status command.  Also added the missing
ipmi_ip field for the blob_status aggregate.

Change-Id: I97c4a82a2467297223b929a29b73e6a8d41f019d
Closes-Bug: 1650332
This commit is contained in:
Mark Hamzy 2017-02-24 18:32:49 +00:00
parent 4c4609e10c
commit f9f122da4a
1 changed files with 3 additions and 2 deletions

View File

@ -341,9 +341,10 @@ class DataBase(object):
# field_name length special_fmt skip
("id", 4, int, False),
("name", 6, str, False),
("ipmi_ip", 16, str, False),
("blob", 40, str, False),
("status", 8, str, False),
("provisioned", 13, str, False),
("provisioned", 40, str, False),
# We add timeString
("time", 14, float, False),
]
@ -364,7 +365,7 @@ class DataBase(object):
("ram_mb", 8, int, False),
("disk_gb", 9, int, False),
("status", 8, str, False),
("provisioned", 13, str, False),
("provisioned", 40, str, False),
# We add timeString
("time", 14, float, False),
]