You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Zhe Zhang (JIRA)" <ji...@apache.org> on 2015/10/21 20:08:28 UTC

[jira] [Resolved] (HADOOP-9311) hadoop-auth: Kerberos token expiration results in an error

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

Zhe Zhang resolved HADOOP-9311.
-------------------------------
       Resolution: Duplicate
    Fix Version/s: 2.4.0

HADOOP-10301 has added a similar logic to address the issue:
{code}
      try {
        token = getToken(httpRequest);
      }
      catch (AuthenticationException ex) {
        LOG.warn("AuthenticationToken ignored: " + ex.getMessage());
        // will be sent back in a 401 unless filter authenticates
        authenticationEx = ex;
        token = null;
      }
{code}

> hadoop-auth: Kerberos token expiration results in an error
> ----------------------------------------------------------
>
>                 Key: HADOOP-9311
>                 URL: https://issues.apache.org/jira/browse/HADOOP-9311
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: net
>    Affects Versions: 1.0.4, 1.1.0
>            Reporter: Joel Firehammer
>            Assignee: Joel Firehammer
>             Fix For: 2.4.0
>
>         Attachments: HADOOP-9311-release-1.0.4.patch
>
>
> When using Kerberos for auth, if a page is left open longer than the token timeout, a subsequent request fails (typically to an error page.) Forcing a refresh will re-establish the session. 
> A minor annoyance, but automatically re-authenticating is friendlier.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)