1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-10 14:15:43 +00:00

info: do not output deduplicated_size

No precise refcounting, can't compute that inexpensively.
This commit is contained in:
Thomas Waldmann 2024-08-23 15:02:22 +02:00
parent 0b85b1a8bd
commit 8455c95003
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01
2 changed files with 0 additions and 2 deletions

View file

@ -123,7 +123,6 @@ Bytes sent to remote: {stats.tx_bytes}
def as_dict(self):
return {
"original_size": FileSize(self.osize, iec=self.iec),
"deduplicated_size": FileSize(self.usize, iec=self.iec),
"nfiles": self.nfiles,
"hashing_time": self.hashing_time,
"chunking_time": self.chunking_time,

View file

@ -43,7 +43,6 @@ class InfoMixIn:
Command line: {command_line}
Number of files: {stats[nfiles]}
Original size: {stats[original_size]}
Deduplicated size: {stats[deduplicated_size]}
"""
)
.strip()