aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-11-20 02:59:21 +0000
committerJustin Clark-Casey (justincc)2010-11-20 02:59:21 +0000
commitd7bca3d8e8f62e938da9fada95f7336710900f4a (patch)
treef55f7389317f1a7cb518d3e94b645d12bbcf7eb6 /OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
parentcorrect build break. for some reason, xbuild didn't rebuild test dlls (diff)
downloadopensim-SC_OLD-d7bca3d8e8f62e938da9fada95f7336710900f4a.zip
opensim-SC_OLD-d7bca3d8e8f62e938da9fada95f7336710900f4a.tar.gz
opensim-SC_OLD-d7bca3d8e8f62e938da9fada95f7336710900f4a.tar.bz2
opensim-SC_OLD-d7bca3d8e8f62e938da9fada95f7336710900f4a.tar.xz
Fix unit tests and save problems
(note; contrary to previous commits, saving 0.4 OARs is actually broken since serialized objects in inventories are not yet converted properly). Firstly, if you can save a version 1.0 OAR then you can load it too. Secondly, closing the save stream even on success before assets/objects are saved is a bad idea
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
index 117b2fd..d5d4468 100644
--- a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
+++ b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
@@ -56,7 +56,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
56 /// The maximum major version of OAR that we can read. Minor versions shouldn't need a max number since version 56 /// The maximum major version of OAR that we can read. Minor versions shouldn't need a max number since version
57 /// bumps here should be compatible. 57 /// bumps here should be compatible.
58 /// </summary> 58 /// </summary>
59 public static int MAX_MAJOR_VERSION = 0; 59 public static int MAX_MAJOR_VERSION = 1;
60 60
61 protected Scene m_scene; 61 protected Scene m_scene;
62 protected Stream m_loadStream; 62 protected Stream m_loadStream;