fixes due to bad rebase

This commit is contained in:
Iuri Matias 2018-08-22 18:16:03 -04:00
parent f86d035702
commit f5883bdd1c
2 changed files with 10 additions and 3 deletions

View File

@ -89,7 +89,7 @@ class Engine {
}
processManagerService(_options) {
const ProcessManager = require('./processes/process_manager.js');
const ProcessManager = require('./processes/processManager.js');
this.processManager = new ProcessManager({
events: this.events,
logger: this.logger,
@ -97,6 +97,10 @@ class Engine {
});
}
graphService(_options) {
this.registerModule('graph');
}
pipelineService(_options) {
const self = this;
this.events.emit("status", "Building Assets");
@ -252,8 +256,8 @@ class Engine {
this.registerModule('library_manager');
}
codeCoverageService(_options) {
this.registerModule('coverage');
codeCoverageService(_options) {
this.registerModule('coverage');
}
}

View File

@ -42,6 +42,9 @@ class ProcessLauncher {
_subscribeToMessages() {
const self = this;
this.process.on('message', (msg) => {
if (msg.error) {
self.logger.error(msg.error);
}
if (msg.result === constants.process.log) {
return self._handleLog(msg);
}