mirror of https://github.com/apache/cloudstack.git
VR: fix wrong check when compare two configuration files (#9822)
This commit is contained in:
parent
371e244375
commit
896b8bfabf
|
|
@ -175,6 +175,6 @@ class CsFile:
|
|||
self.new_config = list(temp_config)
|
||||
|
||||
def compare(self, o):
|
||||
result = (isinstance(o, self.__class__) and set(self.config) == set(o.config))
|
||||
result = (isinstance(o, self.__class__) and self.config == o.config)
|
||||
logging.debug("Comparison of CsFiles content is ==> %s" % result)
|
||||
return result
|
||||
|
|
|
|||
Loading…
Reference in New Issue