Skip to content

Commit 5cc4e04

Browse files
committed
[#9839] fix batch fail
1 parent 057ce0f commit 5cc4e04

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

batch/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@
105105
<artifactId>jakarta.activation</artifactId>
106106
</dependency>
107107

108+
<dependency>
109+
<groupId>org.aspectj</groupId>
110+
<artifactId>aspectjweaver</artifactId>
111+
</dependency>
112+
108113
<!-- Logging dependencies -->
109114
<dependency>
110115
<groupId>org.slf4j</groupId>

batch/src/main/java/com/navercorp/pinpoint/batch/BatchApp.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import com.navercorp.pinpoint.common.hbase.config.HbaseNamespaceConfiguration;
2020
import com.navercorp.pinpoint.common.server.config.TypeLoaderConfiguration;
2121
import com.navercorp.pinpoint.common.server.util.ServerBootLogger;
22+
import com.navercorp.pinpoint.web.WebHbaseModule;
2223
import com.navercorp.pinpoint.web.webhook.WebhookModule;
2324
import org.springframework.boot.SpringBootConfiguration;
2425
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
@@ -48,7 +49,7 @@
4849
TypeLoaderConfiguration.class,
4950
BatchAppPropertySources.class,
5051
WebhookModule.class,
51-
HbaseNamespaceConfiguration.class
52+
WebHbaseModule.class
5253

5354
})
5455
public class BatchApp {

0 commit comments

Comments
 (0)