mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
change region asset connectors again. The new ini files must be used (should update automaticly). All region modes back, but testing needed, as usual. Left out automatic grid store retry, that needs better consideration (like on payed uploads). runprebuild, clearaot etc needed
This commit is contained in:
@@ -217,7 +217,7 @@ namespace OpenSim.Framework
|
||||
catch (Exception ex)
|
||||
{
|
||||
errorMessage = ex.Message;
|
||||
m_log.Debug("[WEB UTIL]: ServiceOSD error creating request " + ex.Message);
|
||||
m_log.Debug("[WEB UTIL]: SvcOSD error creating request " + ex.Message);
|
||||
return ErrorResponseMap(errorMessage);
|
||||
}
|
||||
|
||||
@@ -291,7 +291,7 @@ namespace OpenSim.Framework
|
||||
if (tickdiff > LongCallTime)
|
||||
{
|
||||
m_log.InfoFormat(
|
||||
"[WEB UTIL]: ServiceOSD request {0} {1} {2} took {3}ms, {4}/{5}bytes",
|
||||
"[WEB UTIL]: SvcOSD {0} {1} {2} took {3}ms, {4}/{5}bytes",
|
||||
reqnum, method, url, tickdiff, sendlen, rcvlen );
|
||||
}
|
||||
else if (DebugLevel >= 4)
|
||||
@@ -324,10 +324,10 @@ namespace OpenSim.Framework
|
||||
result["_RawResult"] = OSD.FromString(response);
|
||||
result["_Result"] = new OSDMap();
|
||||
|
||||
if (response.Equals("true",System.StringComparison.OrdinalIgnoreCase))
|
||||
if (response.Equals("true", StringComparison.OrdinalIgnoreCase))
|
||||
return result;
|
||||
|
||||
if (response.Equals("false",System.StringComparison.OrdinalIgnoreCase))
|
||||
if (response.Equals("false", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
result["Success"] = OSD.FromBoolean(false);
|
||||
result["success"] = OSD.FromBoolean(false);
|
||||
|
||||
Reference in New Issue
Block a user