Skip to content

Commit

Permalink
Fix no default param bug (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Apr 2, 2020
1 parent d990f24 commit 910ba9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/kfp_tekton/compiler/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def _create_pipeline_workflow(self, args, pipeline, op_transformers=None, pipeli
'spec': {
'params': [{
'name': p['name'],
'value': p['default']
'value': p.get('default', '')
} for p in pipeline_template['spec']['params']
],
'pipelineRef': {
Expand Down

0 comments on commit 910ba9b

Please sign in to comment.