Skip to content

Commit f0812a6

Browse files
committed
remove debug
1 parent 64df102 commit f0812a6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/ansible_api/controller.py

-3
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,6 @@ async def post(self, request):
103103
loop = asyncio.get_running_loop()
104104
with concurrent.futures.ThreadPoolExecutor() as pool:
105105
response = await loop.run_in_executor(pool, self.run, target, name, module, arg, cb)
106-
# response = yield self.run(target, name, module, arg, cb)
107-
# response = self.run(target, name, module, arg, cb)
108-
print(cb.get_summary(), '-----')
109106
return json(dict(rc=response.rc, detail=cb.get_summary()))
110107
except Exception as e:
111108
Tool.LOGGER.exception(e)

0 commit comments

Comments
 (0)