We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb2b48e + d545025 commit 131557fCopy full SHA for 131557f
src/requests/init.jl
@@ -60,7 +60,7 @@ function has_too_many_files(path, N=5000)
60
end
61
62
catch err
63
- isa(err, Base.IOError) || isa(err, Base.SystemError) || rethrow()
+ isa(err, Base.IOError) || isa(err, Base.SystemError) || (VERSION >= v"1.3.0" && isa(err, Base.TaskFailedException) && isa(err.task.exception, Base.IOError)) || rethrow()
64
return false
65
66
0 commit comments