You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by "Ian Boston (JIRA)" <ji...@apache.org> on 2009/01/07 17:26:44 UTC

[jira] Assigned: (SHINDIG-707) ApiServlet clears interrupted flag

     [ https://issues.apache.org/jira/browse/SHINDIG-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ian Boston reassigned SHINDIG-707:
----------------------------------

    Assignee:     (was: Ian Boston)

I need someone more familiure with the gadget preloaders to deal with this. UnAssigning.

> ApiServlet clears interrupted flag
> ----------------------------------
>
>                 Key: SHINDIG-707
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-707
>             Project: Shindig
>          Issue Type: Improvement
>          Components: Gadget Rendering Server (Java), RESTful API (Java)
>            Reporter: Mathias Bogaert
>
> } catch (InterruptedException ie) {
>       response = responseItemFromException(ie);
> Should be
> } catch (InterruptedException ie) {
>       response = responseItemFromException(ie);
>       // Restore the interrupted status
>       Thread.currentThread().interrupt();
> Reference:
> http://www-128.ibm.com/developerworks/java/library/j-jtp05236.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.