Skip to content

Commit

Permalink
update fluxos min. version
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Jul 30, 2024
1 parent c75c6b7 commit 3e7beb0
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.18.0')) {
if (minVersionSatisfy(version, '5.19.0')) {
if (response.data.data.flux.development === 'false' || !response.data.data.flux.development) {
return true;
}
Expand Down

0 comments on commit 3e7beb0

Please sign in to comment.