Skip to content

Commit

Permalink
fix(upload-notes): fixed rabbit connection
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoSkorJjj committed Apr 23, 2024
1 parent be30620 commit 9549b82
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ public CachingConnectionFactory connectionFactory() {
factory.setUsername(env.getProperty("spring.rabbitmq.username"));
factory.setPassword(env.getProperty("spring.rabbitmq.password"));
boolean sslEnabled = Boolean.parseBoolean(env.getProperty("spring.rabbitmq.ssl.enabled"));
// System.out.println("SSL enabled: " + sslEnabled);
if (sslEnabled) {
try {
// SSLContext sslContext = SSLContext.getInstance(env.getProperty("spring.rabbitmq.ssl.algorithm"));
Expand Down

0 comments on commit 9549b82

Please sign in to comment.