Skip to content

Commit

Permalink
bump fluxos version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Dec 5, 2023
1 parent 3f7acc8 commit ec54481
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 >= 4202) {
if (+version >= 4210) {
if (response.data.data.flux.development === 'false' || !response.data.data.flux.development) {
return true;
}
Expand Down

0 comments on commit ec54481

Please sign in to comment.