dont let webrequests keep copies of all put/post. should not, but may impact some connections like redirection

This commit is contained in:
UbitUmarov
2020-10-28 00:09:32 +00:00
parent 3d5d4333dd
commit e86bd042bb
3 changed files with 29 additions and 25 deletions

View File

@@ -83,7 +83,7 @@ namespace OpenSim.Server
ServicePointManager.DefaultConnectionLimit = 32;
ServicePointManager.MaxServicePointIdleTime = 30000;
ServicePointManager.Expect100Continue = false;
ServicePointManager.Expect100Continue = true; // needed now to suport auto redir without writecache
ServicePointManager.UseNagleAlgorithm = false;
ServicePointManager.ServerCertificateValidationCallback = ValidateServerCertificate;