Commit 84b1741 1 parent 47cb264 commit 84b1741 Copy full SHA for 84b1741
File tree 2 files changed +3
-3
lines changed
src/main/java/org/apache/tika/pipes/grpc
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 34
34
</parent >
35
35
36
36
<properties >
37
- <grpc .version>1.70 .0</grpc .version>
37
+ <grpc .version>1.71 .0</grpc .version>
38
38
<asarkar-grpc-test .version>1.2.2</asarkar-grpc-test .version>
39
39
<awaitility .version>4.3.0</awaitility .version>
40
40
<j2objc-annotations .version>3.0.0</j2objc-annotations .version>
Original file line number Diff line number Diff line change 31
31
import io .grpc .ServerCredentials ;
32
32
import io .grpc .TlsServerCredentials ;
33
33
import io .grpc .protobuf .services .HealthStatusManager ;
34
- import io .grpc .protobuf .services .ProtoReflectionService ;
34
+ import io .grpc .protobuf .services .ProtoReflectionServiceV1 ;
35
35
import org .slf4j .Logger ;
36
36
import org .slf4j .LoggerFactory ;
37
37
@@ -101,7 +101,7 @@ public void start() throws Exception {
101
101
.newServerBuilderForPort (port , creds )
102
102
.addService (new TikaGrpcServerImpl (tikaConfigFile .getAbsolutePath ()))
103
103
.addService (healthStatusManager .getHealthService ())
104
- .addService (ProtoReflectionService .newInstance ())
104
+ .addService (ProtoReflectionServiceV1 .newInstance ())
105
105
.build ()
106
106
.start ();
107
107
LOGGER .info ("Server started, listening on " + port );
You can’t perform that action at this time.
0 commit comments