From a11816b476d54e9ac7ce16afd91dc539b6bcb813 Mon Sep 17 00:00:00 2001 From: Humair Khan Date: Tue, 23 Jan 2024 12:03:23 -0500 Subject: [PATCH] UPSTREAM: : correct typo in experiment model the model name for epxeriment is ExperimentUUID, not ExperimentID Signed-off-by: Humair Khan --- backend/src/apiserver/model/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/apiserver/model/run.go b/backend/src/apiserver/model/run.go index f1d9f28bff6..c3e0342ff2c 100644 --- a/backend/src/apiserver/model/run.go +++ b/backend/src/apiserver/model/run.go @@ -363,7 +363,7 @@ var runAPIToModelFieldMap = map[string]string{ "storage_state": "StorageState", "status": "Conditions", "namespace": "Namespace", // v2beta1 API - "experiment_id": "ExperimentId", // v2beta1 API + "experiment_id": "ExperimentUUID", // v2beta1 API "state": "State", // v2beta1 API "state_history": "StateHistory", // v2beta1 API "runtime_details": "PipelineRuntimeManifest", // v2beta1 API