From 507eb99b6334a83771c3d1f6c2b7ee4c7ee13622 Mon Sep 17 00:00:00 2001 From: Sigurd Hansen Date: Wed, 5 Jun 2024 14:34:19 +0200 Subject: [PATCH] Update moduleExport.R - Enable SSL on dump Enable SSL on database dump --- R/moduleExport.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/moduleExport.R b/R/moduleExport.R index ef2a8afa..d7e002f9 100644 --- a/R/moduleExport.R +++ b/R/moduleExport.R @@ -237,7 +237,7 @@ exportDb <- function(registryName, compress = FALSE, session) { conf <- rapbase::getConfig()[[registryName]] cmd <- paste0( "mysqldump ", - "--no-tablespaces --single-transaction --add-drop-database " + "--no-tablespaces --single-transaction --add-drop-database --ssl " ) cmd <- paste0( cmd, "-B -u ", conf$user, " -p", conf$pass, " -h ", conf$host,