mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
use select.poll() instead of select.select() for file descriptors
see: https://github.com/ansible/tower/issues/861 see: https://github.com/pexpect/pexpect/pull/474
This commit is contained in:
parent
5d82ee5a27
commit
f0d3713e99
@ -101,7 +101,7 @@ def run_pexpect(args, cwd, env, logfile,
|
||||
|
||||
child = pexpect.spawn(
|
||||
args[0], args[1:], cwd=cwd, env=env, ignore_sighup=True,
|
||||
encoding='utf-8', echo=False,
|
||||
encoding='utf-8', echo=False, use_poll=True
|
||||
)
|
||||
child.logfile_read = logfile
|
||||
canceled = False
|
||||
|
||||
@ -30,7 +30,7 @@ jsonschema==2.6.0
|
||||
M2Crypto==0.29.0
|
||||
Markdown==2.6.11
|
||||
ordereddict==1.1
|
||||
pexpect==4.4.0
|
||||
pexpect==4.5.0
|
||||
psphere==0.5.2
|
||||
psutil==5.4.3
|
||||
psycopg2==2.7.3.2 # problems with Segmentation faults / wheels on upgrade
|
||||
|
||||
@ -170,7 +170,7 @@ os-service-types==1.2.0 # via openstacksdk
|
||||
packaging==17.1 # via deprecation
|
||||
pathlib2==2.3.0 # via azure-datalake-store
|
||||
pbr==3.1.1 # via keystoneauth1, openstacksdk, os-service-types, shade, stevedore
|
||||
pexpect==4.4.0
|
||||
pexpect==4.5.0
|
||||
psphere==0.5.2
|
||||
psutil==5.4.3
|
||||
psycopg2==2.7.3.2
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user