Re: Phoenix occasionally hangs on ctrl-c
Ulrich Mayring <[email protected]>
| Newsgroups | gmane.comp.jakarta.avalon.apps.devel,gmane.comp.jakarta.avalon.devel |
|---|---|
| Message-ID | <[email protected]> |
Jim Alateras wrote: > Occasionally when i ctrl-c my phoenix application it does not exit properly. > It prints a message indicating that the JVM is exiting but it never returns > to the command prompt. The only way to terminate the application is to kill > my window. I am running Phoenix 4.0.2 on my W2K box. > > Anyone else seen this problem? Yes, this can happen, when one of your components doesn't release its resources. For example, maybe you have a block with a dispose() method and Phoenix hangs there. Or maybe you have some connection open and Phoenix/the JVM can't close it. Ulrich