Skip to content

Commit

Permalink
update min fluxos version
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Nov 30, 2023
1 parent 4a490ee commit 3f7acc8
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 @@ -76,7 +76,7 @@ async function isVersionOK(ip, port) {
const url = `http://${ip}:${port}/flux/info`;
const response = await serviceHelper.httpGetRequest(url, timeout);
const version = response.data.data.flux.version.replace(/\./g, '');
if (+version >= 4180) {
if (+version >= 4202) {
if (response.data.data.flux.development === 'false' || !response.data.data.flux.development) {
return true;
}
Expand Down

0 comments on commit 3f7acc8

Please sign in to comment.