Changeset: 386485389db4 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=386485389db4
Modified Files:
clients/R/MonetDB.R/R/control.R
Branch: embedded
Log Message:
R Connector need taskkill /F after all
diffs (12 lines):
diff --git a/clients/R/MonetDB.R/R/control.R b/clients/R/MonetDB.R/R/control.R
--- a/clients/R/MonetDB.R/R/control.R
+++ b/clients/R/MonetDB.R/R/control.R
@@ -71,7 +71,7 @@ monetdb.server.start <-
monetdb.server.stop <- function(correct.pid, wait=TRUE ){
correct.pid <- as.integer(correct.pid)
if (.Platform$OS.type == "windows")
- system(paste0("taskkill /PID ", correct.pid))
+ system(paste0("taskkill /F /PID ", correct.pid))
else
system(paste0("kill ", correct.pid))
waittime <- 2
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list