Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack3 committed Jan 2, 2024
1 parent 17f9c5a commit 2050a1a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/TestDatabaseConnector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ jobs:
DBMS_PASSWORD: ${{ secrets.SQL_SERVER_PASSWORD }}
CDM_SCHEMA: ${{ secrets.SQL_SERVER_CDM_SCHEMA }}
WRITE_SCHEMA: ${{ secrets.SQL_SERVER_SCRATCH_SCHEMA }}
TESTTHAT_CPUS : 1

name: Sql Server

Expand All @@ -55,7 +54,6 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Run tests
run: R -e 'source("./TestDatabaseConnector/main.R")'

2 changes: 1 addition & 1 deletion TestDatabaseConnector/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for (i in seq_along(envVars)) {
var <- names(envVars)[i]
value <- envVars[i]
if (var != "DBMS_PASSWORD") {
print(paste(var, ":", value))
print(paste(var, ":", nchar(value)))
} else {
print(paste(var, ": *************"))
}
Expand Down

0 comments on commit 2050a1a

Please sign in to comment.