JIRA

  • Log In Access more options
    • Online Help
    • GreenHopper Help
    • Agile Answers
    • Use Agile By Default
    • Keyboard Shortcuts
    • About JIRA
    • JIRA Credits
    • What’s New
  • Dashboards Access more options (Alt+d)
  • Projects Access more options (Alt+p)
  • Issues Access more options (Alt+i)
  • Agile Access more options (Alt+g)
  • Create Issue
  • Mule
  • MULE-4589

java.lang.IllegalStateException: Phase 'start' has already been executed

  • Agile Board
  • More Actions
  • Views
    • XML
    • Word
    • Printable

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Major Major
  • Resolution: Fixed
  • Affects Version/s: 2.2.2 (EE only)
  • Fix Version/s: 3.0.0
  • Component/s: Core: Concurrency / Threading
  • Labels:
    None
  • User impact:
    High
  • Migration Impact:
    This fix did not make it to Mule 3.0
  • Similar Issues:
    None

Description

I am using Mule ESB EE 2.2.2 and testing it using Junit tests with the FunctionalTestCase mechanism (that is my Junit tests all subclass from this). I get this except intermittently when running the tests.

java.lang.IllegalStateException: Phase 'start' has already been executed
at org.mule.lifecycle.GenericLifecycleManager.checkPhase(GenericLifecycleManager.java:174)
at org.mule.DefaultMuleContext.start(DefaultMuleContext.java:159)
at org.mule.tck.AbstractMuleTestCase.setUp(AbstractMuleTestCase.java:409)
at org.mule.tck.AbstractMuleTestCase.runBare(AbstractMuleTestCase.java:291)
at org.mule.tck.AbstractMuleTestCase.run(AbstractMuleTestCase.java:270)

The fix to the problem is below. It turns out that when I run the test cases it starts my configuration which includes several examples. The way the OSDT examples work is that they are started in a different thread; because of the thread execution order the start intermittently fails because of the problem below.

In DefaultMuleClient.start():

public synchronized void start() throws MuleException
{
lifecycleManager.checkPhase(Startable.PHASE_NAME);
if (!isStarted())
{
if (getSecurityManager() == null)

{ throw new MuleRuntimeException(CoreMessages.objectIsNull("securityManager")); }

if (getQueueManager() == null)

{ throw new MuleRuntimeException(CoreMessages.objectIsNull("queueManager")); }

....

The lifecycleManager.checkPhase() call should be inside of the !isStarted().

What's happening in my tests is that I spawn a thread that starts up MuleClients which causes a the MuleContext to start. Remembering the stack trace in the previous message, this thread is called by the setUp() method in the AbstractMuleTestCase. If the thread starts and gets into the synchronized block of the above start() method, then the main thread will block there while the lengthy startup process is happening. Then the main thread will die because it will fail the checkPhase() call.

Activity

Ascending order - Click to sort in descending order
  • All
  • Comments
  • Work Log
  • History
  • Activity
  • Transitions
  • Commits
  • Source
  • Builds
Hide
Permalink
Francis Upton added a comment - 01/Nov/09 01:41 AM

See also MULE-4590.

Show
Francis Upton added a comment - 01/Nov/09 01:41 AM See also MULE-4590.
Hide
Permalink
Daniel Feist added a comment - 03/Nov/09 09:22 PM

2.1.x: http://fisheye.codehaus.org/changelog/mule/branches/mule-2.1.x?cs=15959
2.2.x: http://fisheye.codehaus.org/changelog/mule/branches/mule-2.2.x?cs=15960
3.x: http://fisheye.codehaus.org/changelog/mule/branches/mule-3.x?cs=15961

Show
Daniel Feist added a comment - 03/Nov/09 09:22 PM 2.1.x: http://fisheye.codehaus.org/changelog/mule/branches/mule-2.1.x?cs=15959 2.2.x: http://fisheye.codehaus.org/changelog/mule/branches/mule-2.2.x?cs=15960 3.x: http://fisheye.codehaus.org/changelog/mule/branches/mule-3.x?cs=15961
Hide
Permalink
Geetha Vallabhaneni added a comment - 22/Jul/10 04:34 PM

When deploying under TomCat, Mule3.0 (Milestone 4) throws the following exception:

a.lang.IllegalStateException: Already in lifecycle phase 'start', cannot fire
e same phase twice
at org.mule.lifecycle.LifecycleManagerSupport.checkPhase(LifecycleManage
pport.java:103)

It is the same bug as this one which was fixed in in 2.2.3:

http://www.mulesoft.org/jira/browse/MULE-4589

the synchronization primitives around the start routine have not made it into 3.0. Here is the thread with more information.

http://forums.mulesoft.org/message.jspa?messageID=10181#10181

Show
Geetha Vallabhaneni added a comment - 22/Jul/10 04:34 PM When deploying under TomCat, Mule3.0 (Milestone 4) throws the following exception: a.lang.IllegalStateException: Already in lifecycle phase 'start', cannot fire e same phase twice at org.mule.lifecycle.LifecycleManagerSupport.checkPhase(LifecycleManage pport.java:103) It is the same bug as this one which was fixed in in 2.2.3: http://www.mulesoft.org/jira/browse/MULE-4589 the synchronization primitives around the start routine have not made it into 3.0. Here is the thread with more information. http://forums.mulesoft.org/message.jspa?messageID=10181#10181
Hide
Permalink
Geetha Vallabhaneni added a comment - 13/Aug/10 01:53 PM

Assigning this to Ross as he is working on lifecycle issues (and asked me to do so).

Show
Geetha Vallabhaneni added a comment - 13/Aug/10 01:53 PM Assigning this to Ross as he is working on lifecycle issues (and asked me to do so).

People

  • Assignee:
    Ross Mason
    Reporter:
    Francis Upton
Vote (1)
Watch (4)

Dates

  • Created:
    31/Oct/09 10:44 AM
    Updated:
    30/Oct/10 07:40 AM
    Resolved:
    30/Oct/10 07:40 AM

Agile

  • View on Board
  • Atlassian JIRA (v5.0.7#734-sha1:8ad78a6)
  • Report a problem
  • Powered by a free Atlassian JIRA open source license for MuleForge. Try JIRA - bug tracking software for your team.