* Restore show information for the OpenSim region server (version, info, threads, etc.)

0.6.3-post-fixes
Justin Clarke Casey 2009-02-09 18:11:09 +00:00
parent eddcf620d8
commit d1d93fae6c
2 changed files with 5 additions and 2 deletions

View File

@ -342,7 +342,7 @@ namespace OpenSim.Framework.Servers
}
public virtual void HandleShow(string module, string[] cmd)
{
{
List<string> args = new List<string>(cmd);
args.RemoveAt(0);

View File

@ -479,6 +479,7 @@ namespace OpenSim
}
}
break;
case "get":
if (cmdparams.Length < 3)
{
@ -501,6 +502,7 @@ namespace OpenSim
}
break;
case "save":
m_console.Notice("Saving configuration file: " + Application.iniFilePath);
m_config.Save(Application.iniFilePath);
@ -763,6 +765,8 @@ namespace OpenSim
// see BaseOpenSimServer
override public void HandleShow(string mod, string[] cmd)
{
base.HandleShow(mod, cmd);
List<string> args = new List<string>(cmd);
args.RemoveAt(0);
string[] showParams = args.ToArray();
@ -835,7 +839,6 @@ namespace OpenSim
});
break;
case "queues":
Notice(GetQueuesReport());
break;