This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-manager.git
The following commit(s) were added to refs/heads/master by this push:
new 3243fea fix: error pages path exception (#562)
3243fea is described below
commit 3243fea62444a19cbe1206aad6d0e30272722f78
Author: Bäm <[email protected]>
AuthorDate: Fri May 3 19:21:14 2024 +0200
fix: error pages path exception (#562)
---
src/main/java/org/apache/pulsar/manager/PulsarManagerApplication.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/pulsar/manager/PulsarManagerApplication.java
b/src/main/java/org/apache/pulsar/manager/PulsarManagerApplication.java
index 1505a02..e28260a 100644
--- a/src/main/java/org/apache/pulsar/manager/PulsarManagerApplication.java
+++ b/src/main/java/org/apache/pulsar/manager/PulsarManagerApplication.java
@@ -16,9 +16,10 @@ package org.apache.pulsar.manager;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
+import
org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
-@SpringBootApplication
+@SpringBootApplication(exclude = {ErrorMvcAutoConfiguration.class})
@EnableZuulProxy
@MapperScan("org.apache.pulsar.manager.mapper")
public class PulsarManagerApplication {