Skip to content

Commit 340919a

Browse files
authored
Adding ticket ID to last TODO (#44948)
### What does this PR do? ``` grep -r '//\s*TODO' --include="*.go" | grep 'pkg/logs\|comp/logs' ./pkg/logs/tailers/windowsevent/tailer_test.go: // TODO: https://datadoghq.atlassian.net/browse/WINA-480 ./pkg/logs/util/windowsevent/transform.go: // TODO: compat: binary data is not guaranteed to be a utf-16 string, but go's ./pkg/logs/internal/tag/provider.go: // TODO: remove this once AD and Tagger use the same PodWatcher instance ``` Adding the [ticket ID](https://datadoghq.atlassian.net/browse/AGNTLOG-475) to the TODO in tag/provider? ex: `// TODO AGNTLOG-475: remove this once AD and Tagger use the same PodWatcher instance` ### Motivation We are almost TODO free! ### Describe how you validated your changes Linter check ### Additional Notes Co-authored-by: gouri.yerra <gouri.yerra@datadoghq.com>
1 parent 15aa408 commit 340919a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/logs/internal/tag/provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func (p *provider) GetTags() []string {
6060
p.Do(func() {
6161
// Warmup duration
6262
// Make sure the tagger collects all the service tags
63-
// TODO: remove this once AD and Tagger use the same PodWatcher instance
63+
// TODO AGNTLOG-475: remove this once AD and Tagger use the same PodWatcher instance
6464
p.clock.Sleep(p.taggerWarmupDuration)
6565
})
6666

0 commit comments

Comments
 (0)