Skip to content

Commit

Permalink
artifactory: add st_size to ArtifactoryFileStat (#453) (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Sep 23, 2024
1 parent b116902 commit c0d788c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions artifactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,7 @@ def _get_base_url(self, url):
"modified_by",
"mime_type",
"size",
"st_size",
"sha1",
"sha256",
"md5",
Expand Down Expand Up @@ -909,6 +910,7 @@ def stat(self, pathobj):
modified_by=jsn.get("modifiedBy"),
mime_type=jsn.get("mimeType"),
size=int(jsn.get("size", "0")),
st_size=int(jsn.get("size", "0")),
sha1=checksums.get("sha1", None),
sha256=checksums.get("sha256", None),
md5=checksums.get("md5", None),
Expand Down

0 comments on commit c0d788c

Please sign in to comment.