diff options
author | Brian Freeman <bf1936@att.com> | 2018-11-13 11:34:48 -0500 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2018-11-13 12:34:20 -0500 |
commit | 8076a87e542a67f321f84311350d20946bee14a2 (patch) | |
tree | 1cb41c8b1093eadaf5178bfcaa92dd4bf7f3a91e /test/vcpe/vcpe_custom_service.py | |
parent | ec9fe0e5a07ac2cdb650cd5cc9a9c883122da780 (diff) |
fixes from vCPE testing
Issue-ID: INT-717
Change-Id: If2c44e08288eee955b7a3548a802be37a15a601e
Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'test/vcpe/vcpe_custom_service.py')
-rwxr-xr-x | test/vcpe/vcpe_custom_service.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/vcpe/vcpe_custom_service.py b/test/vcpe/vcpe_custom_service.py index ad55ed586..f02802353 100755 --- a/test/vcpe/vcpe_custom_service.py +++ b/test/vcpe/vcpe_custom_service.py @@ -68,15 +68,14 @@ class CustomService: def create_custom_service(self, csar_file, vgw_template_file, vgw_gra_template_file, preload_dict=None): name_suffix = datetime.now().strftime('%Y%m%d%H%M') - self.load_object(vgw_vfmod_name_index,vgw_vfmod_name_index_file) if self.vcpecommon.oom_mode: brg_mac = str(raw_input("Enter the BRG MAC address: ")) else: brg_mac = self.vcpecommon.get_brg_mac_from_sdnc() # get name index - self.load_object(vgw_vfmod_name_index,vgw_vfmod_name_index_file) - vgw_vfmod_name_index=vgw_vfmod_name_index+1 - self.save_object(vgw_vfmod_name_index,vgw_vfmod_name_index_file) + self.vgw_vfmod_name_index= self.vcpecommon.load_object(self.vcpecommon.vgw_vfmod_name_index_file) + self.vgw_vfmod_name_index=self.vgw_vfmod_name_index + 1 + self.save_object(vgw_vfmod_name_index,self.vcpecommon.vgw_vfmod_name_index_file) # preload vGW if preload_dict: preloader = preload.Preload(self.vcpecommon) |