Add back ValidationError

This commit is contained in:
grossmj 2024-12-30 15:59:01 +07:00
parent 0be45c7da2
commit efb84b3063
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7

View File

@ -24,6 +24,7 @@ from typing import Optional
from fastapi import HTTPException, status
from gns3server.schemas.controller.tokens import TokenData
from gns3server.config import Config
from pydantic import ValidationError
import logging
@ -80,6 +81,6 @@ class AuthService:
if username is None:
raise credentials_exception
token_data = TokenData(username=username)
except (JoseError, ValueError):
except (JoseError, ValidationError, ValueError):
raise credentials_exception
return token_data.username