Fix sorting bug with snapshot list

This commit is contained in:
Joshua Boniface 2021-02-14 16:34:43 -05:00
parent f22f291c8b
commit 26b0a8b5c1
1 changed files with 1 additions and 1 deletions

View File

@ -783,4 +783,4 @@ def get_list_snapshot(zk_conn, pool, volume, limit, is_fuzzy=True):
else: else:
snapshot_list.append({'pool': pool_name, 'volume': volume_name, 'snapshot': snapshot_name}) snapshot_list.append({'pool': pool_name, 'volume': volume_name, 'snapshot': snapshot_name})
return True, sorted(snapshot_list, key=lambda x: int(x['id'])) return True, sorted(snapshot_list, key=lambda x: int(x['snapshot']))