Skip to content

Commit b09fbe1

Browse files
authored
Bugfix: Fix the logic for the "skip the precompile workload inside AutoMerge" detection (#1320)
Follow-up to #1281 (#1281)
1 parent 2c56cb3 commit b09fbe1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/precompile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ function _precompile_workload_enabled()::Bool
416416
Base.JLOptions().code_coverage == 0 || return false
417417

418418
# https://github.com/JuliaWeb/HTTP.jl/issues/1280
419-
is_julia_automerge() && return true
419+
is_julia_automerge() && return false
420420

421421
return _precompile_host_resolver_available()
422422
end

0 commit comments

Comments
 (0)