File tree Expand file tree Collapse file tree 4 files changed +9
-12
lines changed
src/integrationTest/java/org/hypertrace/core/query/service/htqueries Expand file tree Collapse file tree 4 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ dependencies {
1010 implementation(" org.hypertrace.core.grpcutils:grpc-client-utils:0.7.0" )
1111
1212 // Logging
13- implementation(" org.slf4j:slf4j-api:1.7.30 " )
13+ implementation(" org.slf4j:slf4j-api:1.7.32 " )
1414 // Config
1515 implementation(" com.typesafe:config:1.4.1" )
1616}
Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ dependencies {
3131 implementation(" org.hypertrace.core.attribute.service:attribute-service-api:0.12.3" )
3232 implementation(" org.hypertrace.core.attribute.service:attribute-projection-registry:0.12.3" )
3333 implementation(" org.hypertrace.core.attribute.service:caching-attribute-service-client:0.12.3" )
34- implementation(" org.hypertrace.core.serviceframework:service-framework-spi:0.1.28 " )
34+ implementation(" org.hypertrace.core.serviceframework:service-framework-spi:0.1.33 " )
3535 implementation(" com.google.inject:guice:5.0.1" )
3636 implementation(" org.apache.pinot:pinot-java-client:0.6.0" ) {
3737 // We want to use log4j2 impl so exclude the log4j binding of slf4j
3838 exclude(" org.slf4j" , " slf4j-log4j12" )
3939 }
40- implementation(" org.slf4j:slf4j-api:1.7.30 " )
40+ implementation(" org.slf4j:slf4j-api:1.7.32 " )
4141 implementation(" commons-codec:commons-codec:1.15" )
42- implementation(" org.hypertrace.core.serviceframework:platform-metrics:0.1.28 " )
42+ implementation(" org.hypertrace.core.serviceframework:platform-metrics:0.1.33 " )
4343 implementation(" com.google.protobuf:protobuf-java-util:3.15.6" )
4444 implementation(" com.google.guava:guava:30.1.1-jre" )
4545 implementation(" io.reactivex.rxjava3:rxjava:3.0.11" )
Original file line number Diff line number Diff line change @@ -11,20 +11,18 @@ plugins {
1111dependencies {
1212 implementation(project(" :query-service-impl" ))
1313 implementation(" org.hypertrace.core.grpcutils:grpc-server-utils:0.7.0" )
14- implementation(" org.hypertrace.core.serviceframework:platform-service-framework:0.1.28 " )
15- implementation(" org.slf4j:slf4j-api:1.7.30 " )
14+ implementation(" org.hypertrace.core.serviceframework:platform-service-framework:0.1.33 " )
15+ implementation(" org.slf4j:slf4j-api:1.7.32 " )
1616 implementation(" com.typesafe:config:1.4.1" )
1717
1818 runtimeOnly(" org.apache.logging.log4j:log4j-slf4j-impl:2.17.0" )
1919 runtimeOnly(" io.grpc:grpc-netty" )
2020 integrationTestImplementation(" com.google.protobuf:protobuf-java-util:3.17.3" )
21- integrationTestImplementation(" org.junit.jupiter:junit-jupiter-api:5.7.1" )
22- integrationTestImplementation(" org.junit.jupiter:junit-jupiter-params:5.7.1" )
23- integrationTestImplementation(" org.junit.jupiter:junit-jupiter-engine:5.7.1" )
21+ integrationTestImplementation(" org.junit.jupiter:junit-jupiter:5.7.1" )
2422 integrationTestImplementation(" org.testcontainers:testcontainers:1.16.2" )
2523 integrationTestImplementation(" org.testcontainers:junit-jupiter:1.16.2" )
2624 integrationTestImplementation(" org.testcontainers:kafka:1.16.2" )
27- integrationTestImplementation(" org.hypertrace.core.serviceframework:integrationtest-service-framework:0.1.28 " )
25+ integrationTestImplementation(" org.hypertrace.core.serviceframework:integrationtest-service-framework:0.1.33 " )
2826 integrationTestImplementation(" com.github.stefanbirkner:system-lambda:1.2.0" )
2927
3028 integrationTestImplementation(" org.apache.kafka:kafka-clients:5.5.1-ccs" )
Original file line number Diff line number Diff line change @@ -96,8 +96,7 @@ public static void setup() throws Exception {
9696 new GenericContainer <>(DockerImageName .parse ("hypertrace/pinot-servicemanager:main" ))
9797 .withNetwork (network )
9898 .withNetworkAliases ("pinot-controller" , "pinot-server" , "pinot-broker" )
99- .withExposedPorts (8099 )
100- .withExposedPorts (9000 )
99+ .withExposedPorts (8099 , 9000 )
101100 .dependsOn (kafkaZk )
102101 .withStartupAttempts (CONTAINER_STARTUP_ATTEMPTS )
103102 .waitingFor (Wait .forLogMessage (".*Completed schema installation.*" , 1 ))
You can’t perform that action at this time.
0 commit comments