Merge branch 'rama-integration-beta' into rama-blocked-events

This commit is contained in:
Sander Declerck 2026-03-09 10:01:38 +01:00
commit e3fc6654db
No known key found for this signature in database

View file

@ -99,12 +99,8 @@ async function startRama(ramaPath, dataFolder, reportingUrl) {
"--reporting-endpoint", "--reporting-endpoint",
reportingUrl, reportingUrl,
]; ];
const process = const stdio = getLoggingLevel() === LOGGING_VERBOSE ? "inherit" : "pipe";
getLoggingLevel() === LOGGING_VERBOSE const process = spawn(ramaPath, args, { stdio: stdio });
? spawn(ramaPath, args, {
stdio: "inherit",
})
: spawn(ramaPath, args);
// wait for the proxy process to start (poll for proxy.addr.txt file) // wait for the proxy process to start (poll for proxy.addr.txt file)
const proxyAddrPath = join(dataFolder, "proxy.addr.txt"); const proxyAddrPath = join(dataFolder, "proxy.addr.txt");