We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db1d999 commit 64607ddCopy full SHA for 64607dd
src/Umbraco.Infrastructure/BackgroundJobs/Jobs/WebhookFiring.cs
@@ -51,6 +51,12 @@ public WebhookFiring(
51
52
public async Task RunJobAsync()
53
{
54
+ if (_webhookSettings.Enabled is false)
55
+ {
56
+ _logger.LogInformation("WebhookFiring task will not run as it has been globally disabled via configuration");
57
+ return;
58
+ }
59
+
60
IEnumerable<WebhookRequest> requests;
61
using (ICoreScope scope = _coreScopeProvider.CreateCoreScope())
62
0 commit comments