From cd07cf34dadec5ee11bac3bbdf46e1e7880fda5c Mon Sep 17 00:00:00 2001 From: Chris Post Date: Mon, 11 Jan 2021 10:09:21 -0800 Subject: [PATCH] Fix module path for AWS ECS resource detector (#517) * Fix module path for AWS ECS resource detector * Update CHANGELOG with PR number Co-authored-by: Tyler Yahn --- CHANGELOG.md | 4 ++++ detectors/aws/ecs/go.mod | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 585329ff200..afe0ba81272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +### Fixed + +- Fix module path for AWS ECS resource detector (#517) + ## [0.15.1] - 2020-12-14 ### Added diff --git a/detectors/aws/ecs/go.mod b/detectors/aws/ecs/go.mod index 5ee6cebf8c0..96977097f85 100644 --- a/detectors/aws/ecs/go.mod +++ b/detectors/aws/ecs/go.mod @@ -1,4 +1,4 @@ -module github.com/kkelvinlo/opentelemetry-go-contrib/detectors/aws/ecs +module go.opentelemetry.io/contrib/detectors/aws/ecs go 1.15