Skip to content

Commit

Permalink
authentication: fix imports (use api not core) rucio#5833
Browse files Browse the repository at this point in the history
  • Loading branch information
maany committed Aug 25, 2022
1 parent 3a17c9f commit 01315cf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/rucio/web/rest/flaskapi/v1/auth.py
Expand Up @@ -22,7 +22,6 @@

from flask import Flask, Blueprint, request, Response, redirect, render_template
from urllib.parse import urlparse
from lib.rucio.api.identity import get_default_account
from werkzeug.datastructures import Headers

from rucio.api.authentication import get_auth_token_user_pass, get_auth_token_gss, get_auth_token_x509, \
Expand All @@ -32,7 +31,7 @@
from rucio.common.exception import AccessDenied, IdentityError, CannotAuthenticate, CannotAuthorize
from rucio.common.extra import import_extras
from rucio.common.utils import date_to_str
from rucio.core.identity import list_accounts_for_identity
from rucio.api.identity import list_accounts_for_identity, get_default_account
from rucio.web.rest.flaskapi.v1.common import check_accept_header_wrapper_flask, error_headers, \
extract_vo, generate_http_error_flask, ErrorHandlingMethodView

Expand Down

0 comments on commit 01315cf

Please sign in to comment.