From 162f0b81d1847fd025296326322a961d7b17a5b0 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Wed, 28 Sep 2016 13:15:53 -0400 Subject: [PATCH] Remove unneeded maxread searchwindowsize was the important bit here --- awx/main/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 20edd955ed..c76107d601 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -575,7 +575,7 @@ class BaseTask(Task): instance = self.update_model(instance.pk, status='running', output_replacements=output_replacements) while child.isalive(): - result_id = child.expect(expect_list, timeout=pexpect_timeout, maxread=100, searchwindowsize=100) + result_id = child.expect(expect_list, timeout=pexpect_timeout, searchwindowsize=100) if result_id in expect_passwords: child.sendline(expect_passwords[result_id]) if logfile_pos != logfile.tell():