Skip to content

Commit 528846a

Browse files
committed
Fix buglet in req_perform_parallel()
1 parent 56f9c8b commit 528846a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/req-perform-parallel.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ RequestQueue <- R6::R6Class(
249249
},
250250

251251
submit = function(i) {
252-
retry_check_breaker(self$reqs[[i]], self$tries, error_call = error_call)
252+
retry_check_breaker(self$reqs[[i]], self$tries[[i]], error_call = error_call)
253253

254254
self$set_status(i, "active")
255255
self$resps[i] <- list(NULL)

0 commit comments

Comments
 (0)