(self, type, id)
| 107 | GetDetailExceptionInfo(e)) |
| 108 | |
| 109 | def __addToCleanUp(self, type, id): |
| 110 | if type not in list(self.__cleanUp.keys()): |
| 111 | self.__cleanUp[type] = [] |
| 112 | self.__cleanUp[type].append(id) |
| 113 | if "order" not in list(self.__cleanUp.keys()): |
| 114 | self.__cleanUp["order"] = [] |
| 115 | if type not in self.__cleanUp["order"]: |
| 116 | self.__cleanUp["order"].append(type) |
| 117 | |
| 118 | def addHosts(self, hosts, zoneId, podId, clusterId, hypervisor): |
| 119 | if hosts is None: |
no test coverage detected