Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/apps/server/bridges/scheduler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export class AppSchedulerBridge extends SchedulerBridge {
}
}

private async startScheduler(): Promise<void> {
public async startScheduler(): Promise<void> {
if (!this.isConnected) {
await this.scheduler.start();
this.isConnected = true;
Expand Down
3 changes: 2 additions & 1 deletion app/apps/server/orchestrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ export class AppServerOrchestrator {

return this._manager.load()
.then((affs) => console.log(`Loaded the Apps Framework and loaded a total of ${ affs.length } Apps!`))
.catch((err) => console.warn('Failed to load the Apps Framework and Apps!', err));
.catch((err) => console.warn('Failed to load the Apps Framework and Apps!', err))
.then(() => this.getBridges().getSchedulerBridge().startScheduler());
}

async unload() {
Expand Down