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

Commit 6b0104f

Browse files
authored
Merge pull request #247 from gravesm/dry-run
Add support for dryRun parameter
2 parents a0d4a31 + cbb7169 commit 6b0104f

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
@@ -220,6 +220,8 @@ def request(self, method, path, body=None, **params):
220220
query_params.append(('propagationPolicy', params['propagation_policy']))
221221
if params.get('orphan_dependents') is not None:
222222
query_params.append(('orphanDependents', params['orphan_dependents']))
223+
if params.get('dry_run') is not None:
224+
query_params.append(('dryRun', params['dry_run']))
223225

224226
header_params = params.get('header_params', {})
225227
form_params = []

0 commit comments

Comments
 (0)