Compare commits

..

No commits in common. "bc888195ad6c1ad813770bd97df668ff178a801e" and "f04ea7ac184e36c82a7ae5a09a4629612f6e0d38" have entirely different histories.

3 changed files with 1 additions and 5 deletions

View File

@ -140,7 +140,7 @@ class DigestAuth:
return view(*args, **kwargs)
except UnauthorizedException as e:
if len(e.args) > 0:
current_app.logger.warning(e.args[0])
sys.stderr.write(e.args[0] + "\n")
response: Response = Response()
response.status = 401
response.headers["WWW-Authenticate"] \

View File

@ -18,7 +18,6 @@
"""The test case for the HTTP digest authentication.
"""
import logging
from secrets import token_urlsafe
from typing import Any, Optional, Dict
@ -56,7 +55,6 @@ class AuthenticationTestCase(TestCase):
:return: The Flask application.
"""
logging.getLogger("test_auth").addHandler(logging.NullHandler())
app: Flask = Flask(__name__)
app.config.from_mapping({
"TESTING": True,

View File

@ -18,7 +18,6 @@
"""The test case for the Flask-Login integration.
"""
import logging
from secrets import token_urlsafe
from typing import Optional, Dict
@ -76,7 +75,6 @@ class FlaskLoginTestCase(TestCase):
:return: The Flask application.
"""
logging.getLogger("test_flask_login").addHandler(logging.NullHandler())
app: Flask = Flask(__name__)
app.config.from_mapping({
"TESTING": True,