mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-02-24 08:39:59 -05:00
oops didn't mean to leave that windows-only subprocess flag
This commit is contained in:
parent
ad502f33da
commit
01e38ea8c7
@ -506,7 +506,6 @@ class Chrome:
|
|||||||
# start_new_session - new process group so we can kill the whole group
|
# start_new_session - new process group so we can kill the whole group
|
||||||
self.chrome_process = subprocess.Popen(chrome_args, env=new_env,
|
self.chrome_process = subprocess.Popen(chrome_args, env=new_env,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0,
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0,
|
||||||
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP,
|
|
||||||
start_new_session=True)
|
start_new_session=True)
|
||||||
self._out_reader_thread = threading.Thread(target=self._read_stderr_stdout,
|
self._out_reader_thread = threading.Thread(target=self._read_stderr_stdout,
|
||||||
name="ChromeOutReaderThread(pid={})".format(self.chrome_process.pid))
|
name="ChromeOutReaderThread(pid={})".format(self.chrome_process.pid))
|
||||||
|
2
setup.py
2
setup.py
@ -21,7 +21,7 @@ import setuptools
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.1.dev42',
|
version='1.1.dev43',
|
||||||
description='Distributed web crawling with browsers',
|
description='Distributed web crawling with browsers',
|
||||||
url='https://github.com/internetarchive/brozzler',
|
url='https://github.com/internetarchive/brozzler',
|
||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user