Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RunOnFluxBot committed Nov 14, 2024
1 parent 39f1a35 commit 7bb0e74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/appsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -9008,10 +9008,10 @@ async function testTrySpawningGlobalApplication() {
{ $sort: { name: 1 } },
];

const dbconnection = dbHelper.databaseConnection();
const appsDatabase = dbconnection.db(config.database.appslocal.database);
const db = dbHelper.databaseConnection();
const database = db.db(config.database.appsglobal.database);
log.info('testTrySpawningGlobalApplication');
const globalAppNamesLocation = await dbHelper.aggregateInDatabase(appsDatabase, localAppsInformation, pipeline);
const globalAppNamesLocation = await dbHelper.aggregateInDatabase(database, globalAppsInformation, pipeline);
log.info(JSON.stringify(globalAppNamesLocation));
log.info('testTrySpawningGlobalApplication');
}
Expand Down

0 comments on commit 7bb0e74

Please sign in to comment.