Expect a missing directory, the asset cache is shared. Prevent spew if
two nodes run cleanup at the same time.avinationmerge
parent
d64fb216d2
commit
4f7acc4c2c
|
@ -588,6 +588,11 @@ namespace OpenSim.Region.CoreModules.Asset
|
||||||
dir, dirSize);
|
dir, dirSize);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (DirectoryNotFoundException)
|
||||||
|
{
|
||||||
|
// If we get here, another node on the same box has
|
||||||
|
// already removed the directory. Continue with next.
|
||||||
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
m_log.Warn(
|
m_log.Warn(
|
||||||
|
|
Loading…
Reference in New Issue