Skip to content

Commit

Permalink
bugfix: prefix: [seata.server.raft.ssl] should not be null
Browse files Browse the repository at this point in the history
  • Loading branch information
funky-eyes committed Jan 16, 2025
1 parent 62020ab commit 02d6f63
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ServerRaftSSLClientProperties {

private String path = "ssl/cbolt.pfx";

private String password = "password";
private String password;

private String type = "pkcs12";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ServerRaftSSLServerProperties {

private String path = "ssl/cbolt.pfx";

private String password = "password";
private String password;

private String type = "pkcs12";

Expand Down
4 changes: 2 additions & 2 deletions server/src/main/resources/application.raft.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ seata:
client:
keystore:
path: ssl/cbolt.pfx
password: seata
password:
type: pkcs12
server:
keystore:
path: ssl/bolt.pfx
password: seata
password:
type: pkcs12
kmf-algorithm: SunX509
tmf-algorithm: SunX509
Expand Down

0 comments on commit 02d6f63

Please sign in to comment.