Only if you feel it's worth mentioning in the release notes (as it'll get automatically included if a JIRA was fixed against 2.1.3.)

-Donald


Jarek Gawor wrote:
No JIRA. The trunk testsuites hung so I debugged it and fixed the
problem. Do you want me to open a JIRA for this?

Jarek

On Thu, Aug 28, 2008 at 1:36 PM, Donald Woods <[EMAIL PROTECTED]> wrote:
Is there a JIRA for this, or fixes found during code review?


-Donald


[EMAIL PROTECTED] wrote:
Author: gawor
Date: Thu Aug 28 09:43:52 2008
New Revision: 689885

URL: http://svn.apache.org/viewvc?rev=689885&view=rev
Log:
make sure to call doFail() on any exception otherwise things might hang

Modified:

 
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/RedeployCommand.java

 
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StartCommand.java

 
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StopCommand.java

 
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/UndeployCommand.java

Modified:
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/RedeployCommand.java
URL:
http://svn.apache.org/viewvc/geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/RedeployCommand.java?rev=689885&r1=689884&r2=689885&view=diff

==============================================================================
---
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/RedeployCommand.java
(original)
+++
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/RedeployCommand.java
Thu Aug 28 09:43:52 2008
@@ -111,7 +111,7 @@
            }
            addWebURLs(kernel);
            complete("Completed");
-        } catch (Exception e) {
+        } catch (Throwable e) {
            doFail(e);
        } finally {
            if (spool) {

Modified:
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StartCommand.java
URL:
http://svn.apache.org/viewvc/geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StartCommand.java?rev=689885&r1=689884&r2=689885&view=diff

==============================================================================
---
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StartCommand.java
(original)
+++
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StartCommand.java
Thu Aug 28 09:43:52 2008
@@ -115,8 +115,7 @@
            }
            addWebURLs(kernel);
            complete("Completed");
-        } catch (Exception e) {
-            e.printStackTrace();
+        } catch (Throwable e) {
            doFail(e);
        }
    }

Modified:
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StopCommand.java
URL:
http://svn.apache.org/viewvc/geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StopCommand.java?rev=689885&r1=689884&r2=689885&view=diff

==============================================================================
---
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StopCommand.java
(original)
+++
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/StopCommand.java
Thu Aug 28 09:43:52 2008
@@ -100,7 +100,7 @@
            } else {
                complete("Completed");
            }
-        } catch (Exception e) {
+        } catch (Throwable e) {
            doFail(e);
        }
    }

Modified:
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/UndeployCommand.java
URL:
http://svn.apache.org/viewvc/geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/UndeployCommand.java?rev=689885&r1=689884&r2=689885&view=diff

==============================================================================
---
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/UndeployCommand.java
(original)
+++
geronimo/server/branches/2.1/framework/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/local/UndeployCommand.java
Thu Aug 28 09:43:52 2008
@@ -86,7 +86,7 @@
                updateStatus("Some of the modules to undeploy were not
previously deployed.  This is not treated as an error.");
            }
            complete("Completed");
-        } catch (Exception e) {
+        } catch (Throwable e) {
            doFail(e);
        }
    }




Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to