mirror of
https://github.com/opensim/opensim.git
synced 2026-06-11 22:55:48 +08:00
Yengine: only retry compile if there was a object file in cache with wrong version or signature
This commit is contained in:
@@ -6540,14 +6540,8 @@ namespace OpenSim.Region.ScriptEngine.Yengine
|
||||
|
||||
public class CVVMismatchException: Exception
|
||||
{
|
||||
public int oldcvv;
|
||||
public int newcvv;
|
||||
|
||||
public CVVMismatchException(int oldcvv, int newcvv) : base("object version is " + oldcvv.ToString() +
|
||||
" but accept only " + newcvv.ToString())
|
||||
public CVVMismatchException(string msg) : base(msg)
|
||||
{
|
||||
this.oldcvv = oldcvv;
|
||||
this.newcvv = newcvv;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user