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)
            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.

Reply via email to