Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gubert committed Jan 11, 2024
1 parent e73084c commit 714c879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/meteor/ee/server/apps/orchestrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { AppThreadsConverter } from '../../../app/apps/server/converters/threads
import { settings, settingsRegistry } from '../../../app/settings/server';
import { canEnableApp } from '../../app/license/server/canEnableApp';
import { AppServerNotifier, AppsRestApi, AppUIKitInteractionApi } from './communication';
import { AppRealLogsStorage, AppRealStorage, ConfigurableAppSourceStorage } from './storage';
import { AppRealLogStorage, AppRealStorage, ConfigurableAppSourceStorage } from './storage';

function isTesting() {
return process.env.TEST_MODE === 'true';
Expand Down Expand Up @@ -54,7 +54,7 @@ export class AppServerOrchestrator {
this._logModel = AppLogs;
this._persistModel = AppsPersistence;
this._storage = new AppRealStorage(this._model);
this._logStorage = new AppRealLogsStorage(this._logModel);
this._logStorage = new AppRealLogStorage(this._logModel);
this._appSourceStorage = new ConfigurableAppSourceStorage(appsSourceStorageType, appsSourceStorageFilesystemPath);

this._converters = new Map();
Expand Down

0 comments on commit 714c879

Please sign in to comment.