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 21e423b commit 5c48668Copy full SHA for 5c48668
src/authentication.jl
@@ -282,12 +282,12 @@ function _authenticate(
282
backup_path = string(
283
auth_toml.tokenpath,
284
".",
285
- bytes2hex(open(SHA.sha1, "CHANGELOG.md"))[1:8],
+ bytes2hex(open(SHA.sha1, auth_toml.tokenpath))[1:8],
286
".backup",
287
)
288
mv(auth_toml.tokenpath, backup_path; force=true)
289
@warn """
290
- Existing token appears invalid, retrying with `force=true`.
+ Existing token for $(server_uri) appears invalid; forcing reauthentication.
291
Existing auth.toml backed up in: $(backup_path)
292
"""
293
# We assume that _authenticate_retry immediately returned the token,
0 commit comments