Skip to content

Commit 0f1f181

Browse files
committed
fix missing comma and add NEWS.md item
1 parent 1bf6a4a commit 0f1f181

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

NEWS.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
## IMPROVEMENTS
88

9+
* All HTTP requests are now retried upon failure (#1656)
10+
911
## BUG FIXES
1012

1113
* `ggplotly()` now handles `element_blank()` and `factor()` labels in positional scales correctly (#1731 and #1772).

R/api_exports.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ api <- function(endpoint = "/", verb = "GET", body = NULL, ...) {
195195
body = body,
196196
times = 5,
197197
terminate_on = c(400, 401, 403, 404),
198-
terminate_on_success = TRUE
198+
terminate_on_success = TRUE,
199199
...
200200
)
201201

0 commit comments

Comments
 (0)