File tree Expand file tree Collapse file tree 2 files changed +28
-28
lines changed Expand file tree Collapse file tree 2 files changed +28
-28
lines changed Original file line number Diff line number Diff line change @@ -1192,20 +1192,20 @@ class BinaryControl {
1192
1192
async _triggerBinary(operation) {
1193
1193
let triggerOutput = '';
1194
1194
let triggerError = '';
1195
- await exec.exec(
1196
- `${LOCAL_BINARY_NAME} ${this.binaryArgs} --daemon ${operation}`,
1197
- [],
1198
- {
1199
- listeners: {
1200
- stdout: (data) => {
1201
- triggerOutput += data.toString();
1202
- },
1203
- stderr: (data) => {
1204
- triggerError += data.toString();
1205
- },
1206
- },
1207
- },
1208
- );
1195
+ // await exec.exec(
1196
+ // `${LOCAL_BINARY_NAME} ${this.binaryArgs} --daemon ${operation}`,
1197
+ // [],
1198
+ // {
1199
+ // listeners: {
1200
+ // stdout: (data) => {
1201
+ // triggerOutput += data.toString();
1202
+ // },
1203
+ // stderr: (data) => {
1204
+ // triggerError += data.toString();
1205
+ // },
1206
+ // },
1207
+ // },
1208
+ // );
1209
1209
1210
1210
return {
1211
1211
output: triggerOutput,
Original file line number Diff line number Diff line change @@ -127,20 +127,20 @@ class BinaryControl {
127
127
async _triggerBinary ( operation ) {
128
128
let triggerOutput = '' ;
129
129
let triggerError = '' ;
130
- await exec . exec (
131
- `${ LOCAL_BINARY_NAME } ${ this . binaryArgs } --daemon ${ operation } ` ,
132
- [ ] ,
133
- {
134
- listeners : {
135
- stdout : ( data ) => {
136
- triggerOutput += data . toString ( ) ;
137
- } ,
138
- stderr : ( data ) => {
139
- triggerError += data . toString ( ) ;
140
- } ,
141
- } ,
142
- } ,
143
- ) ;
130
+ // await exec.exec(
131
+ // `${LOCAL_BINARY_NAME} ${this.binaryArgs} --daemon ${operation}`,
132
+ // [],
133
+ // {
134
+ // listeners: {
135
+ // stdout: (data) => {
136
+ // triggerOutput += data.toString();
137
+ // },
138
+ // stderr: (data) => {
139
+ // triggerError += data.toString();
140
+ // },
141
+ // },
142
+ // },
143
+ // );
144
144
145
145
return {
146
146
output : triggerOutput ,
You can’t perform that action at this time.
0 commit comments