Skip to content

Commit ba43d62

Browse files
authored
Merge branch 'main' into track_md_logs_for_error_logging
2 parents b60cab7 + 95c5a5d commit ba43d62

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ads/aqua/modeldeployment/deployment.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -851,6 +851,13 @@ def list(self, **kwargs) -> List["AquaDeployment"]:
851851
)
852852

853853
if oci_aqua:
854+
# skipping the AQUA model deployments that are created from model group
855+
# TODO: remove this checker after AQUA deployment is integrated with model group
856+
aqua_model_id = model_deployment.freeform_tags.get(
857+
Tags.AQUA_MODEL_ID_TAG, UNKNOWN
858+
)
859+
if "datasciencemodelgroup" in aqua_model_id:
860+
continue
854861
results.append(
855862
AquaDeployment.from_oci_model_deployment(
856863
model_deployment, self.region

0 commit comments

Comments
 (0)