Skip to content

Commit

Permalink
Fix using version 3.7.100 of AWS SDK causing exception not finding En…
Browse files Browse the repository at this point in the history
…dpointResolver (#726)

* Fixed using version 3.7.100 of AWS SDK causing exception not finding EndpointResolver in AWS SDK instrumentation package
  • Loading branch information
normj authored Oct 25, 2022
1 parent f3b6d07 commit 8f7fbd4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/OpenTelemetry.Contrib.Instrumentation.AWS/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog - OpenTelemetry.Contrib.Instrumentation.AWS

## Unreleased

* Fixed issue when using version 3.7.100 of the AWS SDK for .NET triggering an
EndpointResolver not found exception.
([#726](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/726))

## 1.0.1

Released 2021-Feb-24
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ public void Customize(Type serviceClientType, RuntimePipeline pipeline)
return;
}

pipeline.AddHandlerAfter<EndpointResolver>(new AWSTracingPipelineHandler(this.options));
pipeline.AddHandlerBefore<RetryHandler>(new AWSTracingPipelineHandler(this.options));
}
}

0 comments on commit 8f7fbd4

Please sign in to comment.