Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/DynamicObjects.jl
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,10 @@ _computeproperty(o, name, indices...; __status__=nothing, kwargs...) = begin
nothing
end
else
cache_status == :started && @warn "Cache file $cache_path exists but has size 0.\nAssuming a previous run failed."
if cache_status == :started
@warn "Cache file $cache_path exists but has size 0. Removing and recomputing."
rm(cache_path)
end
touch(cache_path)
nothing
end
Expand Down