Skip to content

Commit

Permalink
BE: Disable LDAP autoconfiguration (#314)
Browse files Browse the repository at this point in the history
To prevent failing LDAP health checks

Co-authored-by: Alexey Zavialov <[email protected]>
  • Loading branch information
alexeyzavyalov authored Apr 23, 2024
1 parent fd76f61 commit 89d03cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/io/kafbat/ui/KafkaUiApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;

@SpringBootApplication
@EnableScheduling
@EnableAsync
@EnableScheduling
@SpringBootApplication(exclude = LdapAutoConfiguration.class)
public class KafkaUiApplication {

public static void main(String[] args) {
Expand Down

0 comments on commit 89d03cc

Please sign in to comment.