aboutsummaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2021-09-01 19:34:11 +0000
committerArne Juul <arnej@verizonmedia.com>2021-09-01 19:38:00 +0000
commit0acb7dd4139d1846d30d32cd339a423e5e5bd8bb (patch)
treec63e8266e740cdd1115e3c6eca0f6dfeea5be3c7 /fastos
parentc2e4663a82dff4d6351a1e7b1db0e34cf943cf8a (diff)
skip starting extra process
* we never start proxied children via ProcessStarter, so it doesn't need to run.
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/unix_app.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/fastos/src/vespa/fastos/unix_app.cpp b/fastos/src/vespa/fastos/unix_app.cpp
index 6129417cdb3..a6add890d95 100644
--- a/fastos/src/vespa/fastos/unix_app.cpp
+++ b/fastos/src/vespa/fastos/unix_app.cpp
@@ -75,10 +75,6 @@ bool FastOS_UNIX_Application::PreThreadInit ()
if (useProcessStarter()) {
_processStarter = new FastOS_UNIX_ProcessStarter(this);
- if (!_processStarter->Start()) {
- rc = false;
- fprintf(stderr, "could not start FastOS_UNIX_ProcessStarter\n");
- }
}
} else {
rc = false;