Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thegridman committed Jan 3, 2025
1 parent bee14a2 commit 55b2fcd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private GrpcClient() {
*/
public static void main(String[] args) {
try {
Coherence coherence = Coherence.client(Coherence.Mode.Grpc).startAndWait();
Coherence coherence = Coherence.client(Coherence.Mode.GrpcFixed).startAndWait();
Session session = coherence.getSession();

System.out.println("Getting cache 'test' from gRPC session");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@
</remote-cache-scheme>

<remote-grpc-cache-scheme>
<scheme-name>thin-grpc</scheme-name>
<scheme-name>thin-grpc-fixed</scheme-name>
<remote-scope-name system-property="coherence.grpc.remote.scope"/>
<service-name>RemoteGrpcCache</service-name>
<cluster-name system-property="coherence.grpc.remote.cluster"/>
<proxy-service-name system-property="coherence.grpc.remote.proxy"/>
<grpc-channel system-property="coherence.grpc.channel">
<name-service-addresses>
<remote-addresses>
<socket-address>
<address system-property="coherence.grpc.address"/>
<port system-property="coherence.grpc.port"/>
<address system-property="coherence.grpc.address">127.0.0.1</address>
<port system-property="coherence.grpc.port">1408</port>
</socket-address>
</name-service-addresses>
</remote-addresses>
<socket-provider system-property="coherence.grpc.socketprovider"/>
</grpc-channel>
<request-timeout system-property="coherence.grpc.request.timeout"/>
Expand Down

0 comments on commit 55b2fcd

Please sign in to comment.