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
Hi.
The hosting I'm using for my application just did a domain migration. Old URL are now returning a 308 (Permanent Redirect).
getdown, instead of following the Permanent Redirect replaced digest.txt and digest2.txt with the following HTML:
this is an old issue, which I analyse for further works.
It seems, that this is a problem which is related to a bug in the jdk. Follow redirects for status code 308 is unsupported in HttpURLConnection. Unfortunately Connector doesn't check the status code and downloads the error page.
Workaround: Try to use status code 301 with location in header.
It's an old thread, so I'm not sure I remember how it went...
I think I convinced the people managing the hosting to change the redirect for some time, so that users could update the application with a new base URL
Hi.
The hosting I'm using for my application just did a domain migration. Old URL are now returning a 308 (Permanent Redirect).
getdown, instead of following the Permanent Redirect replaced digest.txt and digest2.txt with the following HTML:
<html>
<head><title>308 Permanent Redirect</title></head>
<body bgcolor="white">
<center><h1>308 Permanent Redirect</h1></center>
<hr><center>nginx/1.14.2</center>
</body>
</html>
All installations are now failing to update properly.
The text was updated successfully, but these errors were encountered: