Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RunOnFluxBot committed Jan 30, 2025
1 parent 939020b commit f818230
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions services/appsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -8728,6 +8728,7 @@ async function appLocation(appname) {
expireAt: 1,
runningSince: 1,
osUptime: 1,
staticIp: 1,
},
};
const results = await dbHelper.findInDatabase(database, globalAppsLocations, query, projection);
Expand Down Expand Up @@ -8825,6 +8826,7 @@ async function getRunningAppIpList(ip) { // returns all apps running on this ip
expireAt: 1,
runningSince: 1,
osUptime: 1,
staticIp: 1,
},
};
const results = await dbHelper.findInDatabase(database, globalAppsLocations, query, projection);
Expand All @@ -8850,6 +8852,7 @@ async function getRunningAppList(appName) {
expireAt: 1,
runningSince: 1,
osUptime: 1,
staticIp: 1,
},
};
const results = await dbHelper.findInDatabase(database, globalAppsLocations, query, projection);
Expand Down

0 comments on commit f818230

Please sign in to comment.