Skip to content

Commit 58fb4bf

Browse files
committed
drive-by: I noticed this clarification in tasks.proto and thought it worth transcribing here as well.
1 parent e0b1907 commit 58fb4bf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

console/src/state/tasks.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ struct TaskStats {
8888
waker_drops: u64,
8989

9090
/// The timestamp of when the task was last woken.
91-
last_wake: Option<SystemTime>,
91+
///
92+
/// If this is `None`, the task has not yet been woken.
93+
last_wake: Option<SystemTime>,
94+
9295
/// Total number of times the task has woken itself.
9396
self_wakes: u64,
9497
}

0 commit comments

Comments
 (0)