docs: restore local mode image missing from master - #1406
Open
1183531403-art wants to merge 1 commit into
Open
Conversation
The 'Local mode' section of the README embeds docs/images/try-develop-deploy.png via the raw master URL, but the docs/ directory is gone from master, so the README renders a broken image. The file still exists on release tags (verified 200 on v1.12.0, v1.14.1 and v1.15.1); this restores it byte-identical from v1.15.1 (sha256 4843304cf9a82eb709f0d95b9613b45419c7a1650a650e9bdf48e3ce287b4a59) so the README renders again without any README change. If removing docs/ was intentional, removing the <img> block instead works for me too.
✅ Deploy Preview for poetic-froyo-8baba7 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "Local mode" section of the README embeds a banner image via the raw master URL:
https://github.com/qdrant/qdrant-client/raw/master/docs/images/try-develop-deploy.png (README.md line 53)
That URL currently returns 404: the
docs/directory no longer exists on master, so the README renders a broken image. The same file is still present on release tags — verified HTTP 200 onv1.12.0,v1.14.1, andv1.15.1.This PR restores the file from
v1.15.1byte-identical (sha2564843304cf9a82eb709f0d95b9613b45419c7a1650a650e9bdf48e3ce287b4a59, 353343 bytes, PNG 1571x338), so the README renders again with no README change needed.If dropping
docs/from master was intentional, I'm happy to remove the<img>block from the README instead — just say the word.