Skip to content

Commit ca72fca

Browse files
committed
fix: remove noop playbook check
1 parent 220ae91 commit ca72fca

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tdp/core/dag.py

-12
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ def validate_dag_nodes(nodes: Operations, collections: Collections) -> None:
264264
- \*_start operations can only be required from within its own service
265265
- \*_install operations should only depend on other \*_install operations
266266
- Each service (HDFS, HBase, Hive, etc) should have \*_install, \*_config, \*_init and \*_start operations even if they are "empty" (tagged with noop)
267-
- Operations tagged with the noop flag should not have a playbook defined in the collection
268267
- Each service action (config, start, init) except the first (install) must have an explicit dependency with the previous service operation within the same service
269268
"""
270269
# key: service_name
@@ -328,17 +327,6 @@ def warning(collection_name: str, message: str) -> None:
328327
f"'{operation.service_name}_{previous_action}'"
329328
)
330329

331-
# Operations tagged with the noop flag should not have a playbook defined in the collection
332-
333-
if operation_name in collections[operation.collection_name].playbooks:
334-
if operation.noop:
335-
c_warning(
336-
f"Operation '{operation_name}' is noop and the playbook should not exist"
337-
)
338-
else:
339-
if not operation.noop:
340-
c_warning(f"Operation '{operation_name}' should have a playbook")
341-
342330
# Each service (HDFS, HBase, Hive, etc) should have *_install, *_config, *_init and *_start actions
343331
# even if they are "empty" (tagged with noop)
344332
# Part 2

0 commit comments

Comments
 (0)