From 74d2547262d2c63412b41f70d46d4f3c3c31fad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Wed, 26 Aug 2020 16:31:10 +0200 Subject: [PATCH] Update OpenIddictServerQuartzJob.cs --- src/OpenIddict.Server.Quartz/OpenIddictServerQuartzJob.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenIddict.Server.Quartz/OpenIddictServerQuartzJob.cs b/src/OpenIddict.Server.Quartz/OpenIddictServerQuartzJob.cs index 2586b665..c582db19 100644 --- a/src/OpenIddict.Server.Quartz/OpenIddictServerQuartzJob.cs +++ b/src/OpenIddict.Server.Quartz/OpenIddictServerQuartzJob.cs @@ -97,7 +97,7 @@ namespace OpenIddict.Server.Quartz throw; } - // OperationCanceledExceptions are typically thrown the host is about to shut down. + // OperationCanceledExceptions are typically thrown when the host is about to shut down. // To allow the host to shut down as fast as possible, this exception type is special-cased // to prevent further processing in this job and inform Quartz.NET it shouldn't be refired. catch (OperationCanceledException exception) when (exception.CancellationToken == context.CancellationToken) @@ -154,7 +154,7 @@ namespace OpenIddict.Server.Quartz throw; } - // OperationCanceledExceptions are typically thrown the host is about to shut down. + // OperationCanceledExceptions are typically thrown when the host is about to shut down. // To allow the host to shut down as fast as possible, this exception type is special-cased // to prevent further processing in this job and inform Quartz.NET it shouldn't be refired. catch (OperationCanceledException exception) when (exception.CancellationToken == context.CancellationToken)