GODT-2013: CLI flag for frontend is required (v3)

This commit is contained in:
James Houlahan
2022-11-04 01:10:23 +01:00
parent f8d7b98d05
commit 8b5cb7729c
3 changed files with 26 additions and 8 deletions

View File

@ -257,7 +257,7 @@ void launchBridge(QStringList const &args)
else
app().log().debug(QString("Bridge executable path: %1").arg(QDir::toNativeSeparators(bridgeExePath)));
overseer = std::make_unique<Overseer>(new ProcessMonitor(bridgeExePath, args, nullptr), nullptr);
overseer = std::make_unique<Overseer>(new ProcessMonitor(bridgeExePath, QStringList("--grpc") + args, nullptr), nullptr);
overseer->startWorker(true);
}