Skip to content

Commit

Permalink
Merge pull request #1 from XevoInc/dryrun-mgogoi
Browse files Browse the repository at this point in the history
Add dryrun support - port from mgogoi
  • Loading branch information
shaunsmiley-xevo authored May 12, 2020
2 parents f947ca9 + f39bb22 commit 3df1e24
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions openshift/dynamic/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ def request(self, method, path, body=None, **params):
query_params.append(('timeoutSeconds', params['timeout_seconds']))
if params.get('watch') is not None:
query_params.append(('watch', params['watch']))
if params.get('dry_run') is not None:
query_params.append(('dryRun', params['dry_run']))

header_params = params.get('header_params', {})
form_params = []
Expand Down

0 comments on commit 3df1e24

Please sign in to comment.