Skip to content

Commit 1327acc

Browse files
authored
Remove DELETED_INTEGRATION workaround from ddev (DataDog#21110)
* Remove delete_integration workaround from ddev * Lint
1 parent 3b77f03 commit 1327acc

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

ddev/src/ddev/cli/release/agent/changelog.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
'Mesos': 'Mesos Slave'
2424
}
2525

26-
DELETED_INTEGRATIONS = [
27-
'kaspersky',
28-
]
29-
3026

3127
@click.command(
3228
short_help="Provide a list of updated checks on a given Datadog Agent version, in changelog form",
@@ -73,8 +69,6 @@ def changelog(app: Application, since: str, to: str, write: bool, force: bool):
7369
for entry in CHANGELOG_MANUAL_ENTRIES.get(agent, []):
7470
changelog_contents.write(f'{entry}\n')
7571
for name, ver in version_changes.items():
76-
if name in DELETED_INTEGRATIONS:
77-
continue
7872
display_name = app.repo.integrations.get(name).display_name
7973
display_name = DISPLAY_NAME_MAPPING.get(display_name, display_name)
8074

0 commit comments

Comments
 (0)