Hi, @Jady11. The time the request with x-nf-request-id: 609eabb78112150c2cfc4f4e
was made was 2021-05-14 17:12:00 UTC. At the time, the deploy which was publish was this deploy:
https://app.netlify.com/sites/jadyportfolio/deploys/609eabb78112150c2cfc4f4e
The deploy above was made at 2021-05-14 16:56:23, about fifteen and a half minutes before the HTTP request was made.
If you clone that repo and check out that commit, you can see the status of the page at that time:
$ git clone https://github.com/Jady11/portfolio-reactHW
Cloning into 'portfolio-reactHW'...
remote: Enumerating objects: 294, done.
remote: Counting objects: 100% (147/147), done.
remote: Compressing objects: 100% (102/102), done.
remote: Total 294 (delta 81), reused 100 (delta 44), pack-reused 147
Receiving objects: 100% (294/294), 12.56 MiB | 28.70 MiB/s, done.
Resolving deltas: 100% (121/121), done.
$ cd portfolio-reactHW/
$ git log -n 3
commit 8e08267eae32ee4d12675cd14f60190ed39f7010 (HEAD -> master, origin/master, origin/HEAD)
Author: Jady Tippetts <jady11@gmail.com>
Date: Fri May 14 10:51:41 2021 -0600
added contact tab in navbar
commit 6f494851b0597f3ee4e1d5dd6927b1f6c02a21ec
Author: Jady Tippetts <jady11@gmail.com>
Date: Fri May 14 10:40:27 2021 -0600
testing homepage
commit 011c05be884e1c583e66af61d40202244d0785ae
Author: Jady Tippetts <jady11@gmail.com>
Date: Mon Apr 12 17:05:13 2021 -0600
changes to homepage
Based on the logs above, I can see the status of the repo at this time was the commit 8e08267eae32ee4d12675cd14f60190ed39f7010
made at 2021-05-14 16:51:41 UTC. This is the most recent commit before the deploy was triggered.
If I check out that commit, I can checksum the index.html file of that exact version like so (which isn’t actually needed as I write this because this commit id is the most recent commit currently but the example below will still work if more changes are made to the repo after I write this):
$ git checkout 8e08267eae32ee4d12675cd14f60190ed39f7010
Note: switching to '8e08267eae32ee4d12675cd14f60190ed39f7010'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at 8e08267 added contact tab in navbar
$ md5sum public/build/index.html
c0166c8acae63edefd58463ace685a3c public/build/index.html
That gives us a fingerprint for that file at the exact state of the repo when the deploy was triggered.
Now, we can request that exact deploy’s version of index.html
and checksum it as well with this:
$ curl -s https://609eabb78112150c2cfc4f4e--jadyportfolio.netlify.app/ | md5sum
c0166c8acae63edefd58463ace685a3c -
Based on this, I can see the two checksum are identical:
c0166c8acae63edefd58463ace685a3c public/build/index.html
c0166c8acae63edefd58463ace685a3c -
The two files are identical. Why do you believe this file is cached incorrectly?