Skip to content

Commit

Permalink
[release/v0.32.x] Remove Log for AOT_CONFIG_CONTENT (#2350)
Browse files Browse the repository at this point in the history
* Remove Log for AOT_CONFIG_CONTENT

* Update Version to v0.32.1
  • Loading branch information
vasireddy99 committed Sep 15, 2023
1 parent f36b166 commit 7f54574
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.32.0
v0.32.1
11 changes: 11 additions & 0 deletions docs/releases/v0.32.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## [v0.32.1](https://github.com/aws-observability/aws-otel-collector/tree/v0.32.1) (2023-09-15)

[Full Changelog](https://github.com/aws-observability/aws-otel-collector/compare/v0.32.0...v0.32.1)

**Merged pull requests:**

- Remove Logging for AOT_CONFIG_CONTENT [\#2350](https://github.com/aws-observability/aws-otel-collector/pull/2350) ([vasireddy99](https://github.com/vasireddy99))

\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
3 changes: 1 addition & 2 deletions pkg/config/config_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ func GetConfigProvider(flags *flag.FlagSet) otelcol.ConfigProvider {
// aws-otel-collector supports loading yaml config from Env Var
// including SSM parameter store for ECS use case
loc := getConfigFlag(flags)
if configContent, ok := os.LookupEnv(envKey); ok {
log.Printf("Reading AOT config from environment: %v\n", configContent)
if _, ok := os.LookupEnv(envKey); ok {
loc = []string{"env:" + envKey}
}

Expand Down
2 changes: 1 addition & 1 deletion tools/packaging/windows/aws-otel-collector.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Product Id="EBBD8548-75D1-41D3-A402-ABE189F0C167"
UpgradeCode="B7C263DD-95A5-436A-A025-DCA5200C2BE3"
Name="ADOT Collector"
Version="0.32.0"
Version="0.32.1"
Codepage='1252'
Manufacturer="Amazon.com, Inc."
Language="1033">
Expand Down

0 comments on commit 7f54574

Please sign in to comment.