We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2972cac + 22fe776 commit a63bbd9Copy full SHA for a63bbd9
src/thunk.jl
@@ -175,7 +175,7 @@ function _delayed(f, options::Options)
175
(args...; kwargs...) -> Thunk(f, args_kwargs_to_pairs(args, kwargs)...; options.options...)
176
end
177
function delayed(f, options::Options)
178
- Base.depwarn("`delayed` is deprecated. Use `Dagger.@spawn` or `Dagger.spawn` instead.", :delayed; force=true)
+ @warn "`delayed` is deprecated. Use `Dagger.@spawn` or `Dagger.spawn` instead." maxlog=1
179
return _delayed(f, options)
180
181
delayed(f; kwargs...) = delayed(f, Options(;kwargs...))
0 commit comments