Skip to content

Commit

Permalink
rename schema
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Sep 19, 2024
1 parent bf7c0a8 commit 7f8b019
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions R/daemons.R
Original file line number Diff line number Diff line change
Expand Up @@ -675,9 +675,10 @@ launch_sync_dispatcher <- function(sock, sockc, args, output, tls = NULL, pass =
pkgs <- Sys.getenv("R_DEFAULT_PACKAGES")
system2(command = .command, args = c("--default-packages=NULL", "--vanilla", "-e", args), stdout = output, stderr = output, wait = FALSE)
vec <- c("p", pkgs,
"t", if (is.character(tls)) tls[1L] else "",
"c", if (is.character(tls) && length(tls) > 1L) tls[2L] else "",
"s", if (is.character(pass)) pass[1L] else "", "x")
"o", if (is.character(tls)) tls[1L] else "",
"s", if (is.character(tls) && length(tls) > 1L) tls[2L] else "",
"i", if (is.character(pass)) pass[1L] else "",
"t")
query_dispatcher(sockc, command = vec, mode = 2L, block = .limit_long)
}

Expand Down

0 comments on commit 7f8b019

Please sign in to comment.