This commit is contained in:
Alex Rodionov 2024-05-30 15:37:56 -07:00
parent 7ee036d7e7
commit ad31020598
2 changed files with 2 additions and 2 deletions

2
dist/main/index.js vendored
View file

@ -97050,7 +97050,7 @@ async function startRemoteCacheServer() {
core.info(`Remote cache server log file path: ${config.remoteCacheServer.logPath}`)
const log = fs.openSync(config.remoteCacheServer.logPath, 'a')
const serverProcess = fork(__nccwpck_require__.ab + "remote-cache-server.js", [], {
stdio: ['ignore', log, log]
stdio: ['ignore', log, log, 'ipc']
})
serverProcess.unref()

View file

@ -184,7 +184,7 @@ async function startRemoteCacheServer() {
core.info(`Remote cache server log file path: ${config.remoteCacheServer.logPath}`)
const log = fs.openSync(config.remoteCacheServer.logPath, 'a')
const serverProcess = fork(path.join(__dirname, 'remote-cache-server.js'), [], {
stdio: ['ignore', log, log]
stdio: ['ignore', log, log, 'ipc']
})
serverProcess.unref()