Skip to content

Commit 85c6c71

Browse files
Fix usage of sys_sleep
1 parent 7a66eba commit 85c6c71

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/endpoint/context.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,9 @@ impl ContextInternal {
343343
let handle = unwrap_or_trap_durable_future!(
344344
self,
345345
inner_lock,
346-
inner_lock.vm.sys_sleep(now + sleep_duration, Some(now))
346+
inner_lock
347+
.vm
348+
.sys_sleep(String::default(), now + sleep_duration, Some(now))
347349
);
348350
inner_lock.maybe_flip_span_replaying_field();
349351

0 commit comments

Comments
 (0)