Skip to content
This repository was archived by the owner on Mar 13, 2022. It is now read-only.

Commit cbb7169

Browse files
committed
Add support for dryRun parameter
1 parent 62366ee commit cbb7169

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dynamic/client.py

+2
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@ def request(self, method, path, body=None, **params):
215215
query_params.append(('propagationPolicy', params['propagation_policy']))
216216
if params.get('orphan_dependents') is not None:
217217
query_params.append(('orphanDependents', params['orphan_dependents']))
218+
if params.get('dry_run') is not None:
219+
query_params.append(('dryRun', params['dry_run']))
218220

219221
header_params = params.get('header_params', {})
220222
form_params = []

0 commit comments

Comments
 (0)