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

  • All
  • Comments
  • Work Log
  • History
  • Activity
  • Transitions
  • Commits
  • Source
  • Builds
No work has yet been logged on this issue.

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.