Skip to content

Commit

Permalink
Don't change the Tag Key , use the original from AWS (#87)
Browse files Browse the repository at this point in the history
* Don't change the Tag Key , use the original from AWS

* remove any transformation on AWS tags
  • Loading branch information
cregev authored Jul 9, 2020
1 parent 4440e09 commit 262dd20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/storage/elasticsearch/elasticsearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func (sm *StorageManager) GetExecutionTags(executionID string) (map[string][]str
}

for key, value := range availableTags.Data.Tag {
tags[strings.Title(key)] = append(tags[strings.Title(key)], strings.ToLower(value))
tags[key] = append(tags[key], value)
}
}

Expand Down

0 comments on commit 262dd20

Please # to comment.