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

Fixed CI has an error, update file format #1010

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion delfin/drivers/dell_emc/vmax/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def get_storage_capacity(self, storage_id):
raw_capacity = int(total_raw * units.Gi)
subscribed_capacity = int(subscribed_cap * units.Ti)

return total_capacity, used_capacity, free_capacity,\
return total_capacity, used_capacity, free_capacity, \
raw_capacity, subscribed_capacity

except Exception:
Expand Down
2 changes: 1 addition & 1 deletion delfin/drivers/dell_emc/vmax/vmax.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_storage(self, context):
display_name = array_details['display_name']

# Get Storage details for capacity info
total_capacity, used_capacity, free_capacity,\
total_capacity, used_capacity, free_capacity, \
raw_capacity, subscribed_capacity = \
self.client.get_storage_capacity(storage_id)

Expand Down