pg客户端连接导致child_process.execFile挂起

时间:2019-05-16 22:38:35

标签: node.js postgresql child-process pg execfile

当pg.Client()连接打开时,

child_process.execFile似乎挂起。

当我注释掉pg.Client()。connect()代码后,便能够将其范围缩小到execFile子进程再次工作。

代码在这里-我先感谢所有帮助!

const { Client } = require("pg");
const client = new Client({
  database,
  username,
  password,
  host,
  port
});
client.connect();

const { execFile } = require("child_process");
execFile('someExecutable', (error, stdout, stderr) => {...})

以前有人遇到过这个问题吗?

0 个答案:

没有答案