Fix orchestrator and adds missing files
This commit is contained in:
parent
17c1aae84b
commit
27a036d236
8 changed files with 51 additions and 12 deletions
|
|
@ -473,7 +473,7 @@ class Orchestrator {
|
|||
/**
|
||||
* @type {Device}
|
||||
*/
|
||||
const selectedDevice = this.#devices.values().find((device) => device.name === deviceName)
|
||||
const selectedDevice = this.#devices.values().find((device) => device.name === deviceName) ?? { name: deviceName }
|
||||
|
||||
return {
|
||||
filepath: path,
|
||||
|
|
@ -771,4 +771,4 @@ const orchestrator = new Orchestrator(evremapPath, logger, support);
|
|||
|
||||
prepareProcess(orchestrator);
|
||||
|
||||
orchestrator.run()
|
||||
orchestrator.run()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue