From 3056c9e3af18e35fa3e9b174f0e4db03f95fb090 Mon Sep 17 00:00:00 2001 From: Charles Zaloom <38677807+czaloom@users.noreply.github.com> Date: Thu, 31 Aug 2023 10:54:37 -0500 Subject: [PATCH] chariot integration bugfixes (#165) --- client/velour/integrations/chariot/models.py | 2 +- helm/velour-chart/Chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/velour/integrations/chariot/models.py b/client/velour/integrations/chariot/models.py index 922cb12d5..66f0f5320 100644 --- a/client/velour/integrations/chariot/models.py +++ b/client/velour/integrations/chariot/models.py @@ -199,7 +199,7 @@ def get_chariot_model_integration( except ClientException as e: if "does not exist" not in str(e): raise e - velour_model = create_model_from_chariot(client, model.id) + velour_model = create_model_from_chariot(client, model) # retrieve task-related parser velour_parser = get_prediction_parser_from_chariot( diff --git a/helm/velour-chart/Chart.yaml b/helm/velour-chart/Chart.yaml index bc291cfbe..ab36e1b59 100644 --- a/helm/velour-chart/Chart.yaml +++ b/helm/velour-chart/Chart.yaml @@ -21,4 +21,4 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.7.1" +appVersion: "0.7.2"