def set_config()

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


    def set_config(self, key: str, value: str):
        """
        set plugin config
        :param key:
        :param value:
        :return:
        """
        if key:
            self.__configs[key] = value
            return True
        return False