offload: Display the normalized load in 'guix offload status' output.
Fixes a regression introduced in
bbe66a530a
whereby the actual
load (non-normalized) would be displayed.
* guix/scripts/offload.scm (check-machine-status): Add call to
'normalized-load'.
This commit is contained in:
parent
1a1b54b5bd
commit
62b845c5e2
|
@ -733,7 +733,7 @@ machine."
|
||||||
(utsname:sysname uts) (utsname:release uts)
|
(utsname:sysname uts) (utsname:release uts)
|
||||||
(utsname:machine uts)
|
(utsname:machine uts)
|
||||||
(utsname:nodename uts)
|
(utsname:nodename uts)
|
||||||
load
|
(normalized-load machine load)
|
||||||
(/ free (expt 2 20) 1.))))
|
(/ free (expt 2 20) 1.))))
|
||||||
machines)))
|
machines)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue