Made recurring hosted service base class PerformExecuteAsync method public to support use of this class by packages nad custom solutions.

This commit is contained in:
Andy Butland
2021-03-15 07:49:33 +01:00
parent ada5599a83
commit 5fc9b2e259
9 changed files with 10 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Net.Http;
using System.Runtime.Serialization;
using System.Text;
@@ -35,7 +35,7 @@ namespace Umbraco.Cms.Infrastructure.HostedServices
/// Runs the background task to send the anonymous ID
/// to telemetry service
/// </summary>
internal override async Task PerformExecuteAsync(object state)
public override async Task PerformExecuteAsync(object state)
{
// Try & get a value stored in umbracoSettings.config on the backoffice XML element ID attribute
var backofficeIdentifierRaw = _globalSettings.Value.Id;