mirror of https://github.com/embarklabs/embark.git
fix(@embark/console): ensure Cockpit is only started in non-secondary mode (#2026)
`embark console` registers and tries to spin up `Cockpit`, even when there's already a Cockpit instance running and thefore exits with an error that a certain port is already in use. This commit ensures that Cockpit is only bootstrapped when `embark console` is executed as a non-secondary process, meaning that there's no other `embark run` process active that might occupy Cockpit's default port.
This commit is contained in:
parent
abe79c87f4
commit
b0e71d9427
|
@ -380,7 +380,9 @@ class EmbarkController {
|
||||||
engine.registerModuleGroup("webserver");
|
engine.registerModuleGroup("webserver");
|
||||||
engine.registerModuleGroup("filewatcher");
|
engine.registerModuleGroup("filewatcher");
|
||||||
engine.registerModuleGroup("storage");
|
engine.registerModuleGroup("storage");
|
||||||
engine.registerModuleGroup("cockpit");
|
if (!isSecondaryProcess(engine)) {
|
||||||
|
engine.registerModuleGroup("cockpit");
|
||||||
|
}
|
||||||
engine.registerModulePackage('embark-deploy-tracker', {plugins: engine.plugins});
|
engine.registerModulePackage('embark-deploy-tracker', {plugins: engine.plugins});
|
||||||
|
|
||||||
callback();
|
callback();
|
||||||
|
|
Loading…
Reference in New Issue