Skip to content

Commit f0645e1

Browse files
jeclrsgGordonSmith
authored andcommitted
fix(comms): scopeProperty measure "skw" should be int
in Workunit.normalizeDetails(), the raw value of scope properties of measure "skw" should be integers rather than strings Signed-off-by: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com>
1 parent 1c379cc commit f0645e1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/comms/src/ecl/workunit.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,8 +717,10 @@ export class Workunit extends StateObject<UWorkunitState, IWorkunitState> implem
717717
case "node":
718718
props[scopeProperty.Name] = +scopeProperty.RawValue;
719719
break;
720-
case "cpu":
721720
case "skw":
721+
props[scopeProperty.Name] = +scopeProperty.RawValue;
722+
break;
723+
case "cpu":
722724
case "ppm":
723725
case "ip":
724726
case "cy":

0 commit comments

Comments
 (0)