The full warning is:
Warning in h$complete(pb, .envir = caller, result = "done") :
partial argument match of 'result' to 'results'
It is perhaps related to progress-server.R, where the complete function is defined as:
complete = function(bar, .envir, results) {
if (!is.null(bar$rstudio_id)) {
rstudioapi::jobRemove(bar$rstudio_id)
}
}
However, in progress-c.R and progress-client.R, there is:
h$complete(pb, .envir = .envir, result = result)