Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP status code 404 when fetching https://docs.podman.io/en/v4.5/markdown/podman-run.1.html #172

Open
eriksjolund opened this issue Jul 9, 2023 · 2 comments

Comments

@eriksjolund
Copy link

eriksjolund commented Jul 9, 2023

Run this bash script

#!/bin/bash

versions="4.2
          4.3
          4.4
          4.5"

for i in $versions; do
  echo -n "podman version=$i http_code="
  curl -s -o /dev/null -w "%{http_code}\n" https://docs.podman.io/en/v${i}/markdown/podman-run.1.html
done

output:

podman version=4.2 http_code=200
podman version=4.3 http_code=200
podman version=4.4 http_code=200
podman version=4.5 http_code=404

I expected the output to be

podman version=4.2 http_code=200
podman version=4.3 http_code=200
podman version=4.4 http_code=200
podman version=4.5 http_code=200

because Podman version 4.5.1 has already been released.

Maybe the result is related to the list of Podman versions
on this web page?
https://readthedocs.org/projects/podman/

@TomSweeneyRedHat
Copy link
Member

@baude, thoughts on where this might be going awry?

@Luap99
Copy link
Member

Luap99 commented Jul 12, 2023

There are much more versions missing if you go to: https://readthedocs.org/projects/podman/versions/
I am not sure if there is anything we can even control there that should all just be build automatically.

Also if you lookup the the stable commit (9eef3005) it the 4.5.1 tag so stable should show you v4.5.1. Not sure why it did not create an extra v4.5 branch there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants