Skip to content

Commit

Permalink
Merge pull request #1524 from mrpalide/fix/hot-fix-arm7-survey
Browse files Browse the repository at this point in the history
Fix/hot fix arm7 survey
  • Loading branch information
mrpalide committed Apr 2, 2023
2 parents 6e152a0 + 502e7bc commit 8ee1aaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/visor/visorconfig/values_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ package visorconfig

import (
"runtime"
"strings"
"time"

"github.com/google/uuid"
Expand Down Expand Up @@ -58,7 +59,7 @@ func SystemSurvey() (Survey, error) {
return Survey{}, err
}
memory, err := ghw.Memory(ghw.WithDisableWarnings())
if err != nil {
if err != nil && !strings.Contains(err.Error(), "Could not determine total usable bytes of memory") {
return Survey{}, err
}
for {
Expand Down

0 comments on commit 8ee1aaf

Please sign in to comment.