Remove substitution_sources from Deckhand layering

This patch set removes substitution_sources kwarg from the
Deckhand layering call as it is deprecated [0] because
all concrete documents will simply be used by default as the
substitution source documents.

[0] 1583b78902/deckhand/engine/layering.py (L480)

Change-Id: Ib0ecc9fffdcc539f7fc804824e50981219353292
This commit is contained in:
Felipe Monteiro 2018-07-21 16:35:03 -04:00
parent f0ae58d8b9
commit 4ae815015f
1 changed files with 0 additions and 1 deletions

View File

@ -52,7 +52,6 @@ def deckhand_render(documents=[],
try:
deckhand_eng = layering.DocumentLayering(
documents,
substitution_sources=documents,
fail_on_missing_sub_src=fail_on_missing_sub_src,
validate=validate)
rendered_documents = [dict(d) for d in deckhand_eng.render()]