SL-13910 Failed to upload image to your Profile Feed
Looks like viewer is missing some certs in the bundle or doesn't know how to handle web page's certs. For now disabling verification to not block DRTVWR-516. Verification was originally turned on in DRTVWR-516's SL-13927master
parent
ed98ebb811
commit
7844f7e922
|
|
@ -1237,6 +1237,7 @@ void LLViewerMedia::getOpenIDCookieCoro(std::string url)
|
|||
|
||||
httpOpts->setFollowRedirects(true);
|
||||
httpOpts->setWantHeaders(true);
|
||||
httpOpts->setSSLVerifyPeer(false); // viewer's cert bundle doesn't appear to agree with web certs from "https://my.secondlife.com/"
|
||||
|
||||
LLURL hostUrl(url.c_str());
|
||||
std::string hostAuth = hostUrl.getAuthority();
|
||||
|
|
|
|||
|
|
@ -113,6 +113,7 @@ void LLWebProfile::uploadImageCoro(LLPointer<LLImageFormatted> image, std::strin
|
|||
|
||||
httpOpts->setWantHeaders(true);
|
||||
httpOpts->setFollowRedirects(false);
|
||||
httpOpts->setSSLVerifyPeer(false); ; // viewer's cert bundle doesn't appear to agree with web certs from "https://my.secondlife.com/"
|
||||
|
||||
// Get upload configuration data.
|
||||
std::string configUrl(getProfileURL(std::string()) + "snapshots/s3_upload_config");
|
||||
|
|
|
|||
Loading…
Reference in New Issue