diff options
author | UbitUmarov | 2016-11-27 15:14:34 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-27 15:14:34 +0000 |
commit | 877d3092b45723a2fe8b3a5bbc224cd5d5e55e82 (patch) | |
tree | f11a5b2d85443fefc81e1958c82828a16fc656cc /OpenSim/Framework/RestClient.cs | |
parent | fix pool parameters for httptests (diff) | |
parent | HG on links request build the URI in http format with a / at end, this should... (diff) | |
download | opensim-SC-877d3092b45723a2fe8b3a5bbc224cd5d5e55e82.zip opensim-SC-877d3092b45723a2fe8b3a5bbc224cd5d5e55e82.tar.gz opensim-SC-877d3092b45723a2fe8b3a5bbc224cd5d5e55e82.tar.bz2 opensim-SC-877d3092b45723a2fe8b3a5bbc224cd5d5e55e82.tar.xz |
Merge branch 'master' into httptests
Diffstat (limited to 'OpenSim/Framework/RestClient.cs')
-rw-r--r-- | OpenSim/Framework/RestClient.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RestClient.cs b/OpenSim/Framework/RestClient.cs index ca19392..26237de 100644 --- a/OpenSim/Framework/RestClient.cs +++ b/OpenSim/Framework/RestClient.cs | |||
@@ -430,11 +430,11 @@ namespace OpenSim.Framework | |||
430 | 430 | ||
431 | using (Stream dst = _request.GetRequestStream()) | 431 | using (Stream dst = _request.GetRequestStream()) |
432 | { | 432 | { |
433 | m_log.Info("[REST]: GetRequestStream is ok"); | 433 | m_log.Debug("[REST]: GetRequestStream is ok"); |
434 | 434 | ||
435 | byte[] buf = new byte[1024]; | 435 | byte[] buf = new byte[1024]; |
436 | int length = src.Read(buf, 0, 1024); | 436 | int length = src.Read(buf, 0, 1024); |
437 | m_log.Info("[REST]: First Read is ok"); | 437 | m_log.Debug("[REST]: First Read is ok"); |
438 | while (length > 0) | 438 | while (length > 0) |
439 | { | 439 | { |
440 | dst.Write(buf, 0, length); | 440 | dst.Write(buf, 0, length); |