Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RunOnFluxBot committed Feb 4, 2025
1 parent 3e32657 commit d1501ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/appsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -11989,7 +11989,7 @@ async function monitorSharedDBApps() {
for (const installedApp of appsInstalled.data.filter((app) => app.version > 3).compose.find((comp) => comp.repotag.includes('runonflux/shared-db'))) {
log.info(`monitorSharedDBApps: Found app ${installedApp.name} using sharedDB`);
const componentUsingSharedDB = installedApp.compose.find((comp) => comp.repotag.includes('runonflux/shared-db'));
const apiPort = componentUsingSharedDB.ports.at(-1);
const apiPort = componentUsingSharedDB.ports.at(-1); // it's the last port from the shareddb that is the api port
// eslint-disable-next-line no-await-in-loop
const url = `http://localhost:${apiPort}/status`;
log.info(`monitorSharedDBApps: ${installedApp.name} going to check operator status on url ${url}`);
Expand Down

0 comments on commit d1501ec

Please sign in to comment.