0 Replies Latest reply on Jan 15, 2003 4:13 AM by alona_sam

    java.lang.IllegalStateException: Can't put job, thread is no

    alona_sam

      While loading test with JBoss3.0.0 I get this exception.
      After it happens it continue to happen on every request to JBoss untill restart.
      From the code it seems like main JBoss worker queue failed.

      Has anybody know what the problem?

      public synchronized void putJob(Executable job)

      {

      // Preconditions

      if (m_queueThread == null || !m_queueThread.isAlive()) {throw new IllegalStateException("Can't put job, thread is not alive or not present");}

      if (isInterrupted()) {throw new IllegalStateException("Can't put job, thread was interrupted");}

      putJobImpl(job);

      }