Java OrientDB';s OrientGraph.shutdown()每次调用都会导致异常

Java OrientDB';s OrientGraph.shutdown()每次调用都会导致异常,java,orientdb,Java,Orientdb,我注意到OrientDB的shutdown()方法(OrientGraph的实例方法)每次调用时都会导致以下异常: Method threw 'com.orientechnologies.orient.core.exception.ODatabaseException' exception. Cannot evaluate com.tinkerpop.blueprints.impls.orient.OrientGraph.toString() 异常是静默的,并且控制台或日志中没有打印输出。只有

我注意到OrientDB的shutdown()方法(OrientGraph的实例方法)每次调用时都会导致以下异常:

Method threw 'com.orientechnologies.orient.core.exception.ODatabaseException' exception. Cannot evaluate com.tinkerpop.blueprints.impls.orient.OrientGraph.toString()
异常是静默的,并且控制台或日志中没有打印输出。只有在调试期间跟踪时才能看到它

我这样称呼它:

transaction.commit();
transaction.shutdown(); // silent exception is seen here during tracing
为了记录在案,我得到了这样一个OrientGraph工厂:

OrientGraphFactory gf = new OrientGraphFactory(dbLocation, "admin", "admin", true);
OrientGraph transaction = gf.getTx();

异常的原因是什么?

您使用的是什么版本?您是否可以在bug tracker中创建问题?我们将调查并修复它?