Unverified Commit 3db0a87c authored by matteo1994's avatar matteo1994 Committed by GitHub
Browse files

Migrate totalSize on RegistryRepositoryTag to support fat images (#843)



Co-authored-by: default avatarMatteo Marras <matteo.marras@ti8m.ch>
parent c8fb8a5e
...@@ -12,7 +12,7 @@ public class RegistryRepositoryTag { ...@@ -12,7 +12,7 @@ public class RegistryRepositoryTag {
private String shortRevision; private String shortRevision;
private String digest; private String digest;
private Date createdAt; private Date createdAt;
private Integer totalSize; private Long totalSize;
public String getName() { public String getName() {
return name; return name;
...@@ -70,11 +70,11 @@ public class RegistryRepositoryTag { ...@@ -70,11 +70,11 @@ public class RegistryRepositoryTag {
this.createdAt = createdAt; this.createdAt = createdAt;
} }
public Integer getTotalSize() { public Long getTotalSize() {
return totalSize; return totalSize;
} }
public void setTotalSize(Integer totalSize) { public void setTotalSize(Long totalSize) {
this.totalSize = totalSize; this.totalSize = totalSize;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment