Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Jan 11, 2024
1 parent 32fd5e8 commit 27ba283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/application/checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async function hasManyApps(ip, port) {
const url = `http://${ip}:${port}/apps/globalappsspecifications`;
const response = await serviceHelper.httpGetRequest(url, timeout);
const appsAmount = response.data.data.length;
if (appsAmount > 1500) { // we surely have at least 1500 apps on network
if (appsAmount > 1000) { // we surely have at least 1000 apps on network
// eslint-disable-next-line no-restricted-syntax
for (const app of config.mandatoryApps) {
const appExists = response.data.data.find((a) => a.name === app);
Expand Down

0 comments on commit 27ba283

Please sign in to comment.