Skip to content

Commit

Permalink
[AzureDetector] Fix CS8766
Browse files Browse the repository at this point in the history
  • Loading branch information
Kielek committed Feb 24, 2023
1 parent 47a56b4 commit 68eeab7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OpenTelemetry.ResourceDetectors.Azure.AppServiceResourceDetector
OpenTelemetry.ResourceDetectors.Azure.AppServiceResourceDetector.AppServiceResourceDetector() -> void
OpenTelemetry.ResourceDetectors.Azure.AppServiceResourceDetector.Detect() -> OpenTelemetry.Resources.Resource?
OpenTelemetry.ResourceDetectors.Azure.AppServiceResourceDetector.Detect() -> OpenTelemetry.Resources.Resource!
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace OpenTelemetry.ResourceDetectors.Azure;
public sealed class AppServiceResourceDetector : IResourceDetector
{
/// <inheritdoc/>
public Resource? Detect()
public Resource Detect()
{
List<KeyValuePair<string, object>>? attributeList = null;

Expand Down

0 comments on commit 68eeab7

Please sign in to comment.