* Allow archiver to operate even if there are 0 scene objects to save
parent
3183a20632
commit
bc20c88a0a
|
@ -118,9 +118,7 @@ namespace OpenSim.Region.Environment.Modules.World.Archiver
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create the control file for this archive
|
/// Create the control file for this archive
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>
|
/// <returns></returns>
|
||||||
/// A <see cref="System.String"/>
|
|
||||||
/// </returns>
|
|
||||||
protected string CreateControlFile()
|
protected string CreateControlFile()
|
||||||
{
|
{
|
||||||
StringWriter sw = new StringWriter();
|
StringWriter sw = new StringWriter();
|
||||||
|
|
|
@ -180,10 +180,9 @@ namespace OpenSim.Region.Environment.Modules.World.Archiver
|
||||||
GetSceneObjectAssetUuids(sceneObject, assetUuids);
|
GetSceneObjectAssetUuids(sceneObject, assetUuids);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sceneObjects.Count > 0)
|
m_log.DebugFormat(
|
||||||
{
|
"[ARCHIVER]: {0} scene objects to serialize requiring save of {1} assets",
|
||||||
m_log.DebugFormat("[ARCHIVER]: Successfully got serialization for {0} scene objects", sceneObjects.Count);
|
sceneObjects.Count, assetUuids.Count);
|
||||||
m_log.DebugFormat("[ARCHIVER]: Requiring save of {0} assets", assetUuids.Count);
|
|
||||||
|
|
||||||
// Asynchronously request all the assets required to perform this archive operation
|
// Asynchronously request all the assets required to perform this archive operation
|
||||||
ArchiveWriteRequestExecution awre
|
ArchiveWriteRequestExecution awre
|
||||||
|
@ -197,4 +196,3 @@ namespace OpenSim.Region.Environment.Modules.World.Archiver
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue