fix: update redirect URLs for cifar and china-robot-industry-alliance#84
Merged
firstdata-dev merged 1 commit intoMLT-OSS:mainfrom Mar 23, 2026
Merged
Conversation
Collaborator
firstdata-dev
left a comment
There was a problem hiding this comment.
✅ LGTM. 302 重定向修复,验证充分。
mingcha-dev
commented
Mar 23, 2026
Contributor
Author
mingcha-dev
left a comment
There was a problem hiding this comment.
mingcha QA: cifar website URL redirect fix verified. www → web domain migration. LGTM
- cifar.json: www.cs.toronto.edu → web.cs.toronto.edu (302 domain migration) data_url unchanged — resolves directly without redirect. - china-robot-industry-alliance.json: http → https (website + data_url) Site supports HTTPS with valid cert, old HTTP triggers 301 redirect. Verification: curl -sI https://web.cs.toronto.edu → 200 OK curl -sI https://cria.mei.net.cn/ → 200 OK curl -sI https://cria.mei.net.cn/gzpt.asp?lm=/1310 → 200 OK
f3f12b9 to
0ad7136
Compare
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.
Summary
Update 2 data source URLs to eliminate unnecessary redirects.
Changes
cifar.json
website:https://www.cs.toronto.edu→https://web.cs.toronto.edudata_urlunchanged — see note belowwww302 redirects towebchina-robot-industry-alliance.json
website:http://cria.mei.net.cn/→https://cria.mei.net.cn/data_url:http://cria.mei.net.cn/gzpt.asp?lm=/1310→https://cria.mei.net.cn/gzpt.asp?lm=/1310Verification
Context
Found during URL redirect chain analysis (QA study round 3). Originally #83 (closed), split then re-merged after confirming china-robot site is reachable. Closes #85.