File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
src/main/java/io/eigr/spawn/internal/transport/client Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ The second thing we have to do is add the spawn dependency to the project.
9494<dependency >
9595 <groupId >com.github.eigr</groupId >
9696 <artifactId >spawn-java-std-sdk</artifactId >
97- <version >v1.2.4 </version >
97+ <version >v1.2.5 </version >
9898</dependency >
9999```
100100We're also going to configure a few things for our application build to work, including compiling the protobuf files.
@@ -128,7 +128,7 @@ See below a full example of the pom.xml file:
128128 <dependency >
129129 <groupId >com.github.eigr</groupId >
130130 <artifactId >spawn-java-std-sdk</artifactId >
131- <version >v1.2.4 </version >
131+ <version >v1.2.5 </version >
132132 </dependency >
133133 <dependency >
134134 <groupId >ch.qos.logback</groupId >
Original file line number Diff line number Diff line change 44 <groupId >io.eigr.spawn</groupId >
55 <artifactId >spawn-java-std-sdk</artifactId >
66 <packaging >jar</packaging >
7- <version >1.2.4 </version >
7+ <version >1.2.5 </version >
88 <name >spawn-java-std-sdk</name >
99 <url >http://maven.apache.org</url >
1010
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ public Protocol.RegistrationResponse register(Protocol.RegistrationRequest regis
5252 Call call = client .newCall (request );
5353 try (Response response = call .execute ()) {
5454 assert response .body () != null ;
55+ log .debug ("Decode response from {}" , response .body ().bytes ());
5556 return Protocol .RegistrationResponse .parseFrom (
5657 Objects .requireNonNull (response .body ()
5758 ).bytes ());
You can’t perform that action at this time.
0 commit comments