From f9f122da4a25a450e68a035c50e4e54109cc70f1 Mon Sep 17 00:00:00 2001 From: Mark Hamzy Date: Fri, 24 Feb 2017 18:32:49 +0000 Subject: [PATCH] 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 --- molteniron/moltenirond.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/molteniron/moltenirond.py b/molteniron/moltenirond.py index 5010f10..35c51f5 100755 --- a/molteniron/moltenirond.py +++ b/molteniron/moltenirond.py @@ -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), ]