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
When the DefaultURIDownloader tries to load a schema and got a response 301 Moved Permanently it tries to parse the body content and fails (For example check zalando/zally#1164).
Would be great if the DefaultURIDownloader could handle redirects and instead of failing, try to download schema again.
The text was updated successfully, but these errors were encountered:
The DefaultURIDownloader generally follows redirects. It does not follow redirects if the schema changes. Your example redirects from http://swagger.io/v2/schema.json# to https://schema.swagger.io/v2/schema.json. Therefore it fails.
When the
DefaultURIDownloader
tries to load a schema and got a response301 Moved Permanently
it tries to parse the body content and fails (For example check zalando/zally#1164).Would be great if the
DefaultURIDownloader
could handle redirects and instead of failing, try to download schema again.The text was updated successfully, but these errors were encountered: