def handle()

in hostfactory/host_provider/src/cyclecloud_provider.py [0:0]


    def handle(self, data, debug_output=True):  # pragma: no cover
        assert not self.written 
        self.written = True
        data_str = json.dumps(data)
        if debug_output:
            logger.debug("Response: %s", data_str)
        if not self.quiet:
            print(data_str)
        return data