We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c5b2e0c + 87a7432 commit 116a8a8Copy full SHA for 116a8a8
src/Plugins/Client/ProcessStdIOTransport.js
@@ -36,8 +36,6 @@ class ProcessStdIOTransport extends JSONRPC.ClientPluginBase
36
37
outgoingRequest.isMethodCalled = true;
38
39
- // Without new lines or indent.
40
- outgoingRequest.requestBody = JSON.stringify(outgoingRequest.requestObject);
41
42
const objExecOptions = {
43
cwd: this._strWorkingDirectoryPath,
@@ -49,7 +47,7 @@ class ProcessStdIOTransport extends JSONRPC.ClientPluginBase
49
47
50
48
const child = ChildProcess.spawn(strExePath, [strArguments], objExecOptions);
51
52
- await new Promise((fnResolve, fnReject) => {
+ return new Promise((fnResolve, fnReject) => {
53
child.on(
54
"close",
55
(code) => {
0 commit comments