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 {
11921192 async _triggerBinary(operation) {
11931193 let triggerOutput = '';
11941194 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+ // );
12091209
12101210 return {
12111211 output: triggerOutput,
Original file line number Diff line number Diff line change @@ -127,20 +127,20 @@ class BinaryControl {
127127 async _triggerBinary ( operation ) {
128128 let triggerOutput = '' ;
129129 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+ // );
144144
145145 return {
146146 output : triggerOutput ,
You can’t perform that action at this time.
0 commit comments