Skip to content

Commit

Permalink
Fixed incorrect parameter assignment in create-model-version in the R…
Browse files Browse the repository at this point in the history
… model registry API. (#5185)

Signed-off-by: bramrodenburg <14278376+bramrodenburg@users.noreply.github.com>
  • Loading branch information
bramrodenburg committed Dec 20, 2021
1 parent bf63c5d commit 5fa575e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlflow/R/mlflow/R/model-registry.R
Expand Up @@ -204,7 +204,7 @@ mlflow_create_model_version <- function(name, source, run_id = NULL,
version = "2.0",
data = list(
name = name,
source = name,
source = source,
run_id = run_id,
run_link = run_link,
description = description
Expand Down

0 comments on commit 5fa575e

Please sign in to comment.