Skip to content
Snippets Groups Projects
Commit 205a6005 authored by Todor Kondic's avatar Todor Kondic
Browse files

api: Fix concurrency mode selection.

parent 531e498d
No related branches found
No related tags found
No related merge requests found
......@@ -340,7 +340,7 @@ mk_tol_funcs <- function(m) {
##' @export
extr_data <-function(m) {
message("Stage: extract")
if (!is.null(m$conf$serial) && !m$conf$serial) {
if (is.null(m$conf$serial) || !m$conf$serial) {
extr_data_future(m)
} else {
message("(extract): Serial extraction.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment