Skip to content

Commit

Permalink
[type:fix] e2e test error
Browse files Browse the repository at this point in the history
  • Loading branch information
moremind committed Oct 21, 2023
1 parent 9947b35 commit 67cc694
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
9 changes: 9 additions & 0 deletions shenyu-bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,17 @@
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
<version>4.0.38</version>
</dependency>
<dependency>
<groupId>org.apache.shenyu</groupId>
<artifactId>shenyu-spring-boot-starter-plugin-sofa</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<rpc-sofa-boot-starter.version>3.12.1</rpc-sofa-boot-starter.version>
<!-- <curator.version>4.3.0</curator.version>-->
<micrometer.version>1.8.6</micrometer.version>
<hessian.version>4.0.38</hessian.version>
</properties>

<dependencyManagement>
Expand All @@ -55,8 +56,17 @@
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
<version>${hessian.version}</version>
</dependency>

<!-- <dependency>-->
<!-- <groupId>org.apache.curator</groupId>-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ public ConsumerConfig<GenericService> build(final MetaData metaData) {
reference.setRegistry(registryConfig);
reference.setInterfaceId(metaData.getServiceName());
reference.setProtocol(RpcConstants.PROTOCOL_TYPE_BOLT);
//reference.setSerialization(RpcConstants.SERIALIZE_JSON);
reference.setInvokeType(RpcConstants.INVOKER_TYPE_CALLBACK);
reference.setRepeatedReferLimit(-1);
String rpcExt = metaData.getRpcExt();
Expand Down

0 comments on commit 67cc694

Please sign in to comment.