From 1d6d021f82864c59b73c0570f385b40021af8da7 Mon Sep 17 00:00:00 2001 From: buczekp <buczekp> Date: Wed, 22 Jun 2011 11:30:54 +0000 Subject: [PATCH] last chance to fix (old) system tests SVN: 21807 --- .../web/client/application/AbstractAsyncCallback.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/AbstractAsyncCallback.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/AbstractAsyncCallback.java index 08512daae44..9f687e0846c 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/AbstractAsyncCallback.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/AbstractAsyncCallback.java @@ -231,6 +231,11 @@ public abstract class AbstractAsyncCallback<T> implements AsyncCallback<T> if (caught instanceof InvalidSessionException) { handleSessionTerminated(msg); + // only for tests + if (staticCallbackListener != DEFAULT_CALLBACK_LISTENER) + { + callbackListener.onFailureOf(viewContext, this, msg, caught); + } } else { callbackListener.onFailureOf(viewContext, this, msg, caught); @@ -274,6 +279,7 @@ public abstract class AbstractAsyncCallback<T> implements AsyncCallback<T> private void showSessionTerminated(String msg) { + System.err.println("Session terminated"); // only for tests Dialog dialog = new Dialog(); GWTUtils.setToolTip(dialog, getMessage(Dict.MESSAGEBOX_WARNING)); -- GitLab