def changed()

in apisix/runner/http/response.py [0:0]


    def changed(self) -> bool:
        """
        check response handler is change
        :return:
        """
        if self.__body or self.__headers or self.__status_code:
            return True
        else:
            return False