-
Notifications
You must be signed in to change notification settings - Fork 151
Open
Description
Line 66 in 621e0ad
as.integer(attr(r, "content-length")) |
Hi, I think a simple change here from as.integer
to as.double
should fix this bug.
I was calling object_size()
on a large object, and it was returning NA because the file size was too large.
> object_exists(paste0(s3bucket,"/",s3key))
[1] TRUE
> object_size(paste0(s3bucket,"/",s3key))
[1] NA
Warning message:
In object_size(paste0(s3bucket, "/", s3key)) :
NAs introduced by coercion to integer range
> attr(head_object(paste0(s3bucket,"/",s3key)),"content-length")
[1] "17350435674"
> as.double("17350435674")
[1] 17350435674
> as.integer("17350435674")
[1] NA
Warning message:
NAs introduced by coercion to integer range
Metadata
Metadata
Assignees
Labels
No labels