Skip to content

Commit f58fbd9

Browse files
committed
Correct variable in span event
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent a59a9d4 commit f58fbd9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

java/src/org/openqa/selenium/grid/node/local/LocalNode.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1067,8 +1067,7 @@ public void drain() {
10671067
span.addEvent("Node drain complete", attributeMap);
10681068
} else {
10691069
pendingSessions.set(currentSessionCount);
1070-
span.addEvent(
1071-
String.format("%s session(s) pending before draining Node", currentSessionCount));
1070+
span.addEvent(String.format("%s session(s) pending before draining Node", attributeMap));
10721071
}
10731072
}
10741073
}

0 commit comments

Comments
 (0)