Skip to content

Commit

Permalink
Add password for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-volkov committed Oct 16, 2023
1 parent 6270c62 commit 30c8d67
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion profiling/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ main =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"

-- * Sessions
Expand Down
2 changes: 1 addition & 1 deletion tasty/Main/Connection.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ with handler =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"
use connection =
lift $ handler connection
Expand Down
2 changes: 1 addition & 1 deletion tasty/Main/DSL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ session session =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"
use connection =
ExceptT
Expand Down
2 changes: 1 addition & 1 deletion threads-test/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ main =
$ Hasql.Connection.acquire connectionSettings
where
connectionSettings =
Hasql.Connection.settings "localhost" 5432 "postgres" "" "postgres"
Hasql.Connection.settings "localhost" 5432 "postgres" "postgres" "postgres"
use (connection1, connection2) =
do
beginVar <- newEmptyMVar
Expand Down

0 comments on commit 30c8d67

Please sign in to comment.