Skip to content
Open
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
6 changes: 6 additions & 0 deletions cinderback.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,12 @@ def __init__(self, data):
'os-vol-tenant-attr:tenant_id')
self.name = data.name
self.description = data.description
if len(self.__repr__()) > 255:
_LI('Backup description too long, truncating description field')
self.description = ''
if len(self.__repr__()) > 255:
_LI('Backup description still too long, truncating name field')
self.name = ''

# We don't know how to treat additional types
else:
Expand Down