Skip to content

Commit

Permalink
Merge pull request #270 from NREL/classicFlag
Browse files Browse the repository at this point in the history
Add classic flag to openstudio calling.
  • Loading branch information
wenyikuang committed Nov 28, 2023
2 parents 528df6b + 1590419 commit 0f25685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app/main/measureManagerService.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class MeasureManager {
vm.$log.info('Measure Manager port: ', vm.port);

vm.$log.info('Start Measure Manager Server: ', vm.cliPath, ' measure -s ', vm.port);
vm.cli = vm.spawn(vm.cliPath, ['measure', '-s', vm.port]);
vm.cli = vm.spawn(vm.cliPath, ['classic', 'measure', '-s', vm.port]);
vm.cli.stdout.on('data', (data) => {
// record errors
if (data.indexOf('<0>') !== -1) {
Expand Down

0 comments on commit 0f25685

Please sign in to comment.