Commit cea26d74 authored by Ayush Tiwari's avatar Ayush Tiwari

bt5_config: Use newly generated IDs while installing BMs

parent 95b8173f
...@@ -1959,7 +1959,8 @@ class TemplateTool (BaseTool): ...@@ -1959,7 +1959,8 @@ class TemplateTool (BaseTool):
for item in to_install_path_item_list: for item in to_install_path_item_list:
item.isIndexable = ConstantGetter('isIndexable', value=False) item.isIndexable = ConstantGetter('isIndexable', value=False)
installation_process._setObject(item.getId(), aq_base(item), new_id = new_installation_state.generateNewId()
installation_process._setObject(new_id, aq_base(item),
suppress_events=True) suppress_events=True)
error_list = self.compareOldStateToOFS(installation_process, old_installation_state) error_list = self.compareOldStateToOFS(installation_process, old_installation_state)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment