Test commit.. just contains div trace and other stuff.

0.6.1-post-fixes
Tedd Hansen 2008-11-27 13:41:26 +00:00
parent f7beef3283
commit 1eeffcd89e
3 changed files with 27 additions and 12 deletions

View File

@ -205,13 +205,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
//
if ( !(tie.InnerException is EventAbortException) )
{
throw tie;
throw;
}
}
catch (Exception e)
{
throw e;
}
}
protected void initEventFlags()

View File

@ -50,12 +50,22 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
ILease lease = (ILease)base.InitializeLifetimeService();
if (lease.CurrentState == LeaseState.Initial)
{
//lease.InitialLeaseTime = TimeSpan.Zero;
lease.InitialLeaseTime = TimeSpan.FromMinutes(1);
lease.SponsorshipTimeout = TimeSpan.FromMinutes(2);
lease.RenewOnCallTime = TimeSpan.FromSeconds(2);
}
return lease;
}
#if DEBUG
// For tracing GC while debugging
public static bool GCDummy = false;
~ScriptBaseClass()
{
GCDummy = true;
}
#endif
public ScriptBaseClass()
{

View File

@ -14,5 +14,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Runtime
{
return TimeSpan.FromMinutes(2);
}
#if DEBUG
// For tracing GC while debugging
public static bool GCDummy = false;
~ScriptSponsor()
{
GCDummy = true;
}
#endif
}
}