You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Richard Emberson (JIRA)" <ji...@apache.org> on 2011/07/02 06:42:29 UTC

[jira] [Created] (WICKET-3858) AsynchronousDataStore needs to stop - make thread a daemon

AsynchronousDataStore needs  to stop - make thread a daemon
-----------------------------------------------------------

                 Key: WICKET-3858
                 URL: https://issues.apache.org/jira/browse/WICKET-3858
             Project: Wicket
          Issue Type: Bug
          Components: wicket-core
    Affects Versions: 1.5-RC5.1
         Environment: ant based test environment
            Reporter: Richard Emberson
            Priority: Minor


I don't know how most run the unit tests, but in my ant-base testing environment, the AsynchronousDataStore
thread does not stop and so the testing JVM does not exit. Consider changing:
new Thread(savingRunnable, "Wicket-PageSavingThread").start();
to
Thread t = new Thread(savingRunnable, "Wicket-PageSavingThread");
t.setDaemon(true);
t.start();

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (WICKET-3858) AsynchronousDataStore needs to stop - make thread a daemon

Posted by "Igor Vaynberg (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-3858?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Igor Vaynberg resolved WICKET-3858.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 1.5-RC6
         Assignee: Igor Vaynberg

> AsynchronousDataStore needs  to stop - make thread a daemon
> -----------------------------------------------------------
>
>                 Key: WICKET-3858
>                 URL: https://issues.apache.org/jira/browse/WICKET-3858
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-core
>    Affects Versions: 1.5-RC5.1
>         Environment: ant based test environment
>            Reporter: Richard Emberson
>            Assignee: Igor Vaynberg
>            Priority: Minor
>             Fix For: 1.5-RC6
>
>
> I don't know how most run the unit tests, but in my ant-base testing environment, the AsynchronousDataStore
> thread does not stop and so the testing JVM does not exit. Consider changing:
> new Thread(savingRunnable, "Wicket-PageSavingThread").start();
> to
> Thread t = new Thread(savingRunnable, "Wicket-PageSavingThread");
> t.setDaemon(true);
> t.start();

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira