Skip to content

Commit 2e0a54d

Browse files
authored
Fix call to Timer in create_expr_cache (#27454)
1 parent 37d70a5 commit 2e0a54d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/loading.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,7 @@ function create_expr_cache(input::String, output::String, concrete_deps::typeof(
11611161
close(in)
11621162
catch ex
11631163
close(in)
1164-
process_running(io) && Timer(t -> kill(io), interval = 5.0) # wait a short time before killing the process to give it a chance to clean up on its own first
1164+
process_running(io) && Timer(t -> kill(io), 5.0) # wait a short time before killing the process to give it a chance to clean up on its own first
11651165
rethrow(ex)
11661166
end
11671167
return io

0 commit comments

Comments
 (0)