-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSC 1.8.8 pin_versions created = NA #591
Comments
I just noticed the same issue. The problem seems to stem from the internal function A very crude workaround is of course to pluck out the creation date manually from what's returned from |
This has been fixed in #623 🎉 library(pins)
b <- board_rsconnect()
#> Connecting to RSC 2022.07.0 at <https://colorado.rstudio.com/rsc>
b %>% pin_versions("julia.silge/superbowl_rf")
#> # A tibble: 15 × 4
#> version created active size
#> <chr> <dttm> <lgl> <dbl>
#> 1 60376 2022-08-12 16:11:00 TRUE 85667
#> 2 60232 2022-08-10 11:12:00 FALSE 85067
#> 3 58318 2022-06-29 09:57:00 FALSE 85206
#> 4 57404 2022-06-08 15:22:00 FALSE 88120
#> 5 57365 2022-06-07 13:41:00 FALSE 88185
#> 6 57364 2022-06-07 13:35:00 FALSE 87879
#> 7 57309 2022-06-06 09:17:00 FALSE 88767
#> 8 57291 2022-06-05 19:33:00 FALSE 88709
#> 9 55426 2022-04-19 13:20:00 FALSE 152018
#> 10 55158 2022-04-12 12:18:00 FALSE 89828
#> 11 54892 2022-04-04 09:14:00 FALSE 88961
#> 12 54422 2022-03-21 10:11:00 FALSE 88342
#> 13 54416 2022-03-21 09:20:00 FALSE 87386
#> 14 54302 2022-03-16 14:40:00 FALSE 87829
#> 15 53963 2022-03-08 13:34:00 FALSE 87735 Created on 2022-08-16 by the reprex package (v2.0.1) |
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue. |
When list pin versions from RSC 1.8.8 the created date is NA.
In the RSC contend history function the dates can be seen.
`pins::board_rsconnect() %>% pins::pin_versions(xxx)
Connecting to RSC 1.8.8 at https://xxx
A tibble: 6 × 4
version created active size
1 71093 NA TRUE 334178
2 71092 NA FALSE 334176
3 70990 NA FALSE 337920
4 70980 NA FALSE 337917
5 70962 NA FALSE 337945
6 70955 NA FALSE 337938`
The text was updated successfully, but these errors were encountered: