Skip to content
Open
Changes from 4 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
10 changes: 5 additions & 5 deletions ads/aqua/modeldeployment/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1507,11 +1507,11 @@ def list(self, **kwargs) -> List["AquaDeployment"]:

if oci_aqua:
# skipping the AQUA model deployments that are created from model group
if (
model_deployment.model_deployment_configuration_details.deployment_type
in [UNKNOWN_ENUM_VALUE, MODEL_GROUP, SINGLE_MODEL_FLEX]
):
continue
# if (
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's delete these lines. Git will keep the history.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

# model_deployment.model_deployment_configuration_details.deployment_type
# in [UNKNOWN_ENUM_VALUE, MODEL_GROUP, SINGLE_MODEL_FLEX]
# ):
# continue
try:
results.append(
AquaDeployment.from_oci_model_deployment(
Expand Down