Merge pull request #907 from embark-framework/bug_fix/upload-cmd-ens-setprovider-missing

upload command should unconditionally start the "namingSystem" service
This commit is contained in:
Iuri Matias 2018-09-26 09:20:46 -04:00 committed by GitHub
commit 1fd3cd268f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -487,9 +487,7 @@ class EmbarkController {
engine.startService("deployment"); engine.startService("deployment");
engine.startService("storage"); engine.startService("storage");
engine.startService("codeGenerator"); engine.startService("codeGenerator");
if(options.ensDomain) { engine.startService("namingSystem");
engine.startService("namingSystem");
}
callback(); callback();
}, },
function listLoadedPlugin(callback) { function listLoadedPlugin(callback) {