Skip to content

Commit

Permalink
bump fluxOs min. version
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Jul 16, 2024
1 parent 927dbc6 commit 4a64bc2
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 @@ -111,7 +111,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;
if (minVersionSatisfy(version, '5.16.0')) {
if (minVersionSatisfy(version, '5.17.0')) {
if (response.data.data.flux.development === 'false' || !response.data.data.flux.development) {
return true;
}
Expand Down

0 comments on commit 4a64bc2

Please sign in to comment.