You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Read the Docs username (if applicable): danielmitterdorfer
Expected Result
Each page of the Rally docs contains an "Edit on Github" link. Clicking on that link will open a Github page that shows the respective file's content.
Actual Result
Each page of the Rally docs contains an "Edit on Github" link. Clicking on that link opens a Github 404 page (except for "latest" which correctly points to master).
However, I've seen in the build output of cat docs/conf.py that the user configuration is explicitly overridden with the contents of context shown above.
Is there any possibility to either manually inject a commit hash or use the same commit hash in github_version and commit?
The text was updated successfully, but these errors were encountered:
Hi, thanks for reporting, I think this is a duplicate of #1820, it's because there are two hashes, one for the commit and other for the tag, GitHub doesn't recognize one of those.
Thanks for your quick answer. This really sounds like the exact same problem as #1820 to which you pointed to. I'll just close this issue then as it is a duplicate.
Details
Expected Result
Each page of the Rally docs contains an "Edit on Github" link. Clicking on that link will open a Github page that shows the respective file's content.
Actual Result
Each page of the Rally docs contains an "Edit on Github" link. Clicking on that link opens a Github 404 page (except for "latest" which correctly points to master).
More detailed analysis
An example that demonstrates the problem is e.g. the current stable version. At the moment this link on the index page points to https://github.com/elastic/rally/blob/467b22ebaacde0366846696747c419e42bbc971b/docs/index.rst. However, the problem is that
467b22ebaacde0366846696747c419e42bbc971b
is not a valid commit in the Github repo https://github.com/elastic/rally.In the build output in the Readthedocs build id
6575685
we see a build stepcat docs/conf.py
which shows (shortened):The
commit
key at the end actually points the correct commit whereas thegithub_version
doesn't (that commit does not exist in the repo).I also tried to define these keys explicitly as described in the VCS integration docs:
However, I've seen in the build output of
cat docs/conf.py
that the user configuration is explicitly overridden with the contents ofcontext
shown above.Is there any possibility to either manually inject a commit hash or use the same commit hash in
github_version
andcommit
?The text was updated successfully, but these errors were encountered: