* Prevent UI freeze because of unhandle exception

* Make sure CacheReset is always run on client
This commit is contained in:
Heng Sin Low 2007-01-09 14:08:51 +00:00
parent 6c3905fe20
commit b157d7c608
1 changed files with 6 additions and 2 deletions

View File

@ -245,7 +245,7 @@ public class ProcessCtl extends Thread
rs.close();
pstmt.close();
}
catch (SQLException e)
catch (Exception e)
{
m_pi.setSummary (Msg.getMsg(Env.getCtx(), "ProcessNoProcedure") + " " + e.getLocalizedMessage(), true);
unlock();
@ -447,7 +447,11 @@ public class ProcessCtl extends Thread
{
log.fine(m_pi.toString());
boolean started = false;
if (DB.isRemoteProcess())
//CacheReset must execute on client
boolean resetCache = CacheReset.class.getName().equals(m_pi.getClassName());
if (DB.isRemoteProcess() && !resetCache)
{
Server server = CConnection.get().getServer();
try