Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update AdapterCreator.java
Browse files Browse the repository at this point in the history
hsluoyz authored May 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent cdd14dc commit 44343e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/org/casbin/adapter/AdapterCreator.java
Original file line number Diff line number Diff line change
@@ -26,9 +26,9 @@ public interface AdapterCreator {
}

class MySQLAdapterCreator implements AdapterCreator {
private String url = "jdbc:mysql://127.0.0.1:3306/jcasbin?serverTimezone=GMT%2B8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true";
private String username = "root";
private String password = "Wodemima0";
private String url = "jdbc:mysql://127.0.0.1:3306/casbin?serverTimezone=GMT%2B8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true";
private String username = "casbin_test";
private String password = "TEST_casbin";
private String driver = "com.mysql.cj.jdbc.Driver";

@Override

0 comments on commit 44343e3

Please sign in to comment.