Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UPSTREAM: <carry>: correct typo in experiment model #10

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
UPSTREAM: <carry>: correct typo in experiment model
the model name for epxeriment is ExperimentUUID, not ExperimentID

Signed-off-by: Humair Khan <HumairAK@users.noreply.github.com>
  • Loading branch information
HumairAK committed Jan 23, 2024
commit a11816b476d54e9ac7ce16afd91dc539b6bcb813
2 changes: 1 addition & 1 deletion backend/src/apiserver/model/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading