Skip to content

Commit

Permalink
fix(vdp): rename create pipeline input parameters (#228)
Browse files Browse the repository at this point in the history
Because

- parameter name `pipeline id` should align with other function
parameter names

This commit

- rename `pipeline id`
  • Loading branch information
joremysh authored Oct 14, 2024
1 parent 83b1137 commit 2220438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions instill/clients/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,14 +235,14 @@ def list_pipelines(
def create_pipeline(
self,
namespace_id: str,
name: str,
pipeline_id: str,
description: str,
recipe: dict,
raw_recipe: str = "",
async_enabled: bool = False,
) -> pipeline_interface.CreateNamespacePipelineResponse:
pipeline = pipeline_interface.Pipeline(
id=name,
id=pipeline_id,
description=description,
raw_recipe=raw_recipe,
)
Expand Down

0 comments on commit 2220438

Please sign in to comment.