Skip to content

Commit

Permalink
fix: error in pg conn where conn object wasn't returned
Browse files Browse the repository at this point in the history
  • Loading branch information
dnldelarosa committed Sep 16, 2024
1 parent f7db87d commit 525ed41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/db_connect.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ db_connect <- function(
user = uname,
password = pass
)
}

return(conn)
}

stop(cli::cli_alert_error(
paste0("El sistema de base de datos '", db_sys, "' no está soportado.")
Expand Down

0 comments on commit 525ed41

Please sign in to comment.