From 2b8066106ff63f44391489f85096ab47b80b41c6 Mon Sep 17 00:00:00 2001 From: Tglman Date: Thu, 16 Jul 2020 18:36:44 +0100 Subject: [PATCH] add timer shutdown on remote context close --- .../com/orientechnologies/orient/core/db/OrientDBRemote.java | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/main/java/com/orientechnologies/orient/core/db/OrientDBRemote.java b/client/src/main/java/com/orientechnologies/orient/core/db/OrientDBRemote.java index c8fcf1e8cff..0bcedaef781 100755 --- a/client/src/main/java/com/orientechnologies/orient/core/db/OrientDBRemote.java +++ b/client/src/main/java/com/orientechnologies/orient/core/db/OrientDBRemote.java @@ -256,6 +256,7 @@ public void close() { public void internalClose() { if (!open) return; + timer.cancel(); final List storagesCopy; synchronized (this) { // SHUTDOWN ENGINES AVOID OTHER OPENS