From 103537027565373cdf6dbc4e7d63cf8e5387b2bb Mon Sep 17 00:00:00 2001 From: jprocter Date: Mon, 29 Aug 2011 16:54:25 +0100 Subject: [PATCH] JAL-715 - grammar for warning message. --- src/jalview/ws/rest/RestJobThread.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/jalview/ws/rest/RestJobThread.java b/src/jalview/ws/rest/RestJobThread.java index 799c7b4..4bc183a 100644 --- a/src/jalview/ws/rest/RestJobThread.java +++ b/src/jalview/ws/rest/RestJobThread.java @@ -238,8 +238,8 @@ public class RestJobThread extends AWSThread response = httpclient.execute(request); } catch (ClientProtocolException he) { - rj.statMessage = "Web Protocol Exception when attempting to " - + getStage(stg) + "Job. See Console output for details."; + rj.statMessage = "Web Protocol Exception when " + + getStage(stg) + "Job.
Problematic url was "+request.getURI()+"
See Console output for details."; rj.setAllowedServerExceptions(0);// unrecoverable; rj.error = true; Cache.log.fatal("Unexpected REST Job " + getStage(stg) @@ -247,8 +247,8 @@ public class RestJobThread extends AWSThread throw (he); } catch (IOException e) { - rj.statMessage = "IO Exception when attempting to " - + getStage(stg) + "Job. See Console output for details."; + rj.statMessage = "IO Exception when " + + getStage(stg) + "Job.
Problematic url was "+request.getURI()+"
See Console output for details."; Cache.log.warn("IO Exception for REST Job " + getStage(stg) + "exception for URL " + rj.rsd.postUrl); -- 1.7.10.2