mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-09-25 23:25:44 +00:00
ChromeProcess: Use the --disable-crash-reporter command-line option
This avoids an ownership conflict over /tmp/Crashpad.
This commit is contained in:
@@ -60,7 +60,8 @@ public class ChromeProcess implements Closeable {
|
||||
}
|
||||
|
||||
private static Process launch(String executable) throws IOException {
|
||||
return new ProcessBuilder(executable, "--headless", "--remote-debugging-port=0").inheritIO()
|
||||
return new ProcessBuilder(executable, "--headless", "--remote-debugging-port=0",
|
||||
"--disable-crash-reporter").inheritIO()
|
||||
.redirectError(ProcessBuilder.Redirect.PIPE).start();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user