Skip to content

Commit a69ed32

Browse files
committed
PBM-1404: fix cond: len with -1 for no diff
1 parent 1b2a8ba commit a69ed32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pbm/backup/storage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ func checkPhysicalBackupDataFiles(_ context.Context, stg storage.Storage, bcp *B
130130
}
131131

132132
for _, f := range filelist {
133-
if f.Len <= 0 {
133+
if f.Len < 0 {
134134
continue // no file expected
135135
}
136136

0 commit comments

Comments
 (0)