Skip to content

Commit

Permalink
Update KitchenDAO.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Drunkkong committed Jun 21, 2023
1 parent 306d944 commit 30e34bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/bluckham/dao/KitchenDAO.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private Connection connect() {
try {
var url = "jdbc:postgresql://localhost:2342/inventory";
var user = "postgres";
var password = "Drunkkong1";
var password = "password";
conn = DriverManager.getConnection(url, user, password);
logger.info("Connection setup");
} catch (SQLException e) {
Expand Down

0 comments on commit 30e34bf

Please sign in to comment.