ASM #629 - GFE: when runProcedure terminates unexpectedly locks remain in gfelocktable.

Change-Id: I7b0f6b3974e8a8e4072fa530dce7443a9d85244a

Former-commit-id: a437417c6a07fc069e194cd08d515c6984d15616
This commit is contained in:
Michael Gamazaychikov 2015-03-10 13:17:29 -04:00
parent 3c45c2d158
commit 12304947c6

View file

@ -144,10 +144,10 @@ public class ClearGfeOrphanedLocks {
lockList = (List<Lock>) lockMgr.getAllLocks(siteId);
// find orphaned locks and break them
breakLocks(clients, lockList, lockMgr, siteId);
return;
} catch (GfeException e) {
statusHandler.error("Error retrieving all locks", e);
}
}
return;
}
}