src/hpc/autoscale/node/constraints.py [135:143]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if self.case_insensitive and isinstance(target, str):
                target = target.lower()

            for n, value in enumerate(self.values):
                if isinstance(value, str) and isinstance(target, str):
                    matches = fnmatch(target, value)
                else:
                    matches = target == value
                if matches:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/hpc/autoscale/node/constraints.py [186:194]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if self.case_insensitive and isinstance(target, str):
            target = target.lower()

        for n, value in enumerate(self.values):
            if isinstance(value, str) and isinstance(target, str):
                matches = fnmatch(target, value)
            else:
                matches = target == value
            if matches:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



