diff options
author | John Hurliman | 2009-10-14 19:23:44 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-14 19:23:44 -0700 |
commit | 4790f8576c868ac92b5f2c9e96e1f8629af09d4d (patch) | |
tree | 4ab16c12752676c1c5e863c6cbdc45652ad93949 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Merge branch 'htb-throttle' of ssh://opensimulator.org/var/git/opensim into h... (diff) | |
download | opensim-SC-4790f8576c868ac92b5f2c9e96e1f8629af09d4d.zip opensim-SC-4790f8576c868ac92b5f2c9e96e1f8629af09d4d.tar.gz opensim-SC-4790f8576c868ac92b5f2c9e96e1f8629af09d4d.tar.bz2 opensim-SC-4790f8576c868ac92b5f2c9e96e1f8629af09d4d.tar.xz |
* Replaced (possibly broken?) math for calculating the unix timestamp in MySQLAssetData with Utils.DateTimeToUnixTime()
* Disabled UpdateAccessTime() function since it was only writing zeros anyways. This gave me a significant performance improvement for startup times and avatar logins in standalone mode
* Load attachments asynchronously so avatars with lots of attachments don't have to race the timeout clock to login
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 14e4534..d3d397d 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -2481,7 +2481,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2481 | if (aCircuit == null || aCircuit.child == false) | 2481 | if (aCircuit == null || aCircuit.child == false) |
2482 | { | 2482 | { |
2483 | sp.IsChildAgent = false; | 2483 | sp.IsChildAgent = false; |
2484 | sp.RezAttachments(); | 2484 | Util.FireAndForget(delegate(object o) { sp.RezAttachments(); }); |
2485 | } | 2485 | } |
2486 | } | 2486 | } |
2487 | 2487 | ||