Skip to content

Commit

Permalink
fix-execution-name (#1095)
Browse files Browse the repository at this point in the history
Signed-off-by: troychiu <[email protected]>
  • Loading branch information
troychiu authored Aug 28, 2023
1 parent 3ebf229 commit 344da7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/remote_access/remote_access/remote_launchplan.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
#
# # Execute
# execution = remote.execute(
# flyte_lp, inputs={"mean": 1}, execution_name="lp_execution", wait=True
# flyte_lp, inputs={"mean": 1}, execution_name="lp-execution", wait=True
# )
# ```
#
2 changes: 1 addition & 1 deletion examples/remote_access/remote_access/remote_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
#
# # Run Task
# execution = remote.execute(
# flyte_task, inputs={"n": 200, "mean": 0.0, "sigma": 1.0}, execution_name="task_execution", wait=True
# flyte_task, inputs={"n": 200, "mean": 0.0, "sigma": 1.0}, execution_name="task-execution", wait=True
# )
#
# # Inspecting execution
Expand Down
2 changes: 1 addition & 1 deletion examples/remote_access/remote_access/remote_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#
# # Execute
# execution = remote.execute(
# flyte_workflow, inputs={"mean": 1}, execution_name="workflow_execution", wait=True
# flyte_workflow, inputs={"mean": 1}, execution_name="workflow-execution", wait=True
# )
# ```
#

0 comments on commit 344da7d

Please sign in to comment.