We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f4a30 commit 55ed512Copy full SHA for 55ed512
tests/ust_docker_labels_test.go
@@ -48,9 +48,11 @@ func (s *ECSFargateSuite) TestUSTDockerLabels() {
48
AssertDockerLabels(s.T(), container, expectedUSTLabels)
49
}
50
51
+ // Expect UST docker labels to be overwritten on application container if docker labels
52
+ // are specified in the container definition.
53
overwrittenLabels, found := GetContainer(containers, "app-overwritten-ust")
54
s.True(found, "Container app-overwritten-ust not found in definitions")
- expectedUSTLabels["com.datadoghq.tags.service"] = "different_name"
55
+ expectedUSTLabels["com.datadoghq.tags.service"] = "overwritten_name"
56
AssertDockerLabels(s.T(), overwrittenLabels, expectedUSTLabels)
57
58
0 commit comments