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.
1 parent 769fc34 commit 9c1fac9Copy full SHA for 9c1fac9
1 file changed
src/VersionsJSONUtil.jl
@@ -163,11 +163,11 @@ function get_new_headinfo_for_url(url::URI)
163
etag = get(headers, "ETag", "")
164
last_modified = get(headers, "Last-Modified", "")
165
if isempty(strip(etag))
166
- @warn "Got empty new ETag for URL: $new_etag"
+ @warn "Got empty new ETag for URL: $etag"
167
etag = nothing
168
end
169
if isempty(strip(last_modified))
170
+ @warn "Got empty new Last-Modified for URL: $last_modified"
171
last_modified = nothing
172
173
head_info = HeadInfo(; etag, last_modified)
0 commit comments