We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a827d7f commit e3b97f1Copy full SHA for e3b97f1
1 file changed
qubes/tests/integ/dispvm.py
@@ -280,9 +280,13 @@ async def wait_preload(
280
281
async def run_preload_proc(self):
282
logger.info("start")
283
+ # TODO: ben: to marek: DEVNULL may work because differently than None,
284
+ # it is not a closed fd.
285
proc = await asyncio.create_subprocess_exec(
286
*self.preload_cmd,
287
stdout=asyncio.subprocess.PIPE,
288
+ #stdin=asyncio.subprocess.PIPE,
289
+ stdin=asyncio.subprocess.DEVNULL,
290
)
291
try:
292
stdout, _ = await asyncio.wait_for(proc.communicate(), timeout=60)
0 commit comments