aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Authenticate
diff options
context:
space:
mode:
author杨宇千 <crupest@outlook.com>2019-08-04 21:35:04 +0800
committerGitHub <noreply@github.com>2019-08-04 21:35:04 +0800
commit52f5d2724d74ddb37141d8dfcc8384c0c8ce0e24 (patch)
treed1c9c7b51353b67b47bb4cd89aa82754ef0a1234 /Timeline/Authenticate
parentc07297373df08bd605f5bec96020192bb6dec151 (diff)
parentd1ebb882e8484c80eca86cac80602fb4c1401834 (diff)
downloadtimeline-52f5d2724d74ddb37141d8dfcc8384c0c8ce0e24.tar.gz
timeline-52f5d2724d74ddb37141d8dfcc8384c0c8ce0e24.tar.bz2
timeline-52f5d2724d74ddb37141d8dfcc8384c0c8ce0e24.zip
Merge pull request #34 from crupest/token-time
Set token expired time and write unit tests.
Diffstat (limited to 'Timeline/Authenticate')
-rw-r--r--Timeline/Authenticate/AuthHandler.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Timeline/Authenticate/AuthHandler.cs b/Timeline/Authenticate/AuthHandler.cs
index 75d3b49f..41cb11c6 100644
--- a/Timeline/Authenticate/AuthHandler.cs
+++ b/Timeline/Authenticate/AuthHandler.cs
@@ -87,6 +87,10 @@ namespace Timeline.Authenticate
return AuthenticateResult.Success(new AuthenticationTicket(principal, AuthConstants.Scheme));
}
+ catch (ArgumentException)
+ {
+ throw; // this exception usually means server error.
+ }
catch (Exception e)
{
_logger.LogInformation(e, "A jwt token validation failed.");