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

Revert "fix: show dep volume failure (#1545)" #1597

Merged
merged 1 commit into from
Jan 2, 2025
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
4 changes: 4 additions & 0 deletions console/repositories/app_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,10 @@ def get_by_dep_service_id(self, tenant_id, dep_service_id):
def get_service_mnts_filter_volume_type(self, tenant_id, service_id, volume_types=None):
conn = BaseConnection()
query = "mnt.tenant_id = '%s' and mnt.service_id = '%s'" % (tenant_id, service_id)
if volume_types:
vol_type_sql = " and volume.volume_type in ({})".format(','.join(["'%s'"] * len(volume_types)))
query += vol_type_sql % tuple(volume_types)

sql = """
select mnt.mnt_name,
mnt.mnt_dir,
Expand Down
Loading