Skip to content

Commit

Permalink
add os uptime to missing db searchs
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Jan 27, 2025
1 parent 4e6b6da commit 5da7963
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ZelBack/src/services/appsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -8793,6 +8793,7 @@ async function getRunningAppIpList(ip) { // returns all apps running on this ip
broadcastedAt: 1,
expireAt: 1,
runningSince: 1,
osUptime: 1,
},
};
const results = await dbHelper.findInDatabase(database, globalAppsLocations, query, projection);
Expand All @@ -8817,6 +8818,7 @@ async function getRunningAppList(appName) {
broadcastedAt: 1,
expireAt: 1,
runningSince: 1,
osUptime: 1,
},
};
const results = await dbHelper.findInDatabase(database, globalAppsLocations, query, projection);
Expand Down

0 comments on commit 5da7963

Please sign in to comment.