File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed
src/main/java/com/microsoft/azure/functions/worker Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 77
77
<dependency >
78
78
<groupId >com.google.code.gson</groupId >
79
79
<artifactId >gson</artifactId >
80
- <version >2.8.6 </version >
80
+ <version >2.9.0 </version >
81
81
</dependency >
82
82
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
83
83
<dependency >
Original file line number Diff line number Diff line change 78
78
<dependency >
79
79
<groupId >com.google.protobuf</groupId >
80
80
<artifactId >protobuf-java</artifactId >
81
- <version >3.16.1 </version >
81
+ <version >3.19.4 </version >
82
82
</dependency >
83
83
<dependency >
84
84
<groupId >io.grpc</groupId >
85
85
<artifactId >grpc-protobuf</artifactId >
86
- <version >1.20 .0</version >
86
+ <version >1.45 .0</version >
87
87
</dependency >
88
88
<dependency >
89
89
<groupId >io.grpc</groupId >
90
90
<artifactId >grpc-stub</artifactId >
91
- <version >1.20 .0</version >
91
+ <version >1.45 .0</version >
92
92
</dependency >
93
93
<dependency >
94
94
<groupId >io.grpc</groupId >
95
95
<artifactId >grpc-netty-shaded</artifactId >
96
- <version >1.20.0</version >
96
+ <version >1.45.0</version >
97
+ </dependency >
98
+ <dependency >
99
+ <groupId >com.google.code.gson</groupId >
100
+ <artifactId >gson</artifactId >
101
+ <version >2.9.0</version >
97
102
</dependency >
98
103
<dependency >
99
104
<groupId >org.apache.commons</groupId >
269
274
<pattern >javax.annotation</pattern >
270
275
<shadedPattern >com.microsoft.azure.functions.shaded.javax.annotation</shadedPattern >
271
276
</relocation >
272
- <relocation combine.children=" append" >
273
- <pattern >io.opencensus</pattern >
274
- <shadedPattern >com.microsoft.azure.functions.shaded.io.opencensus</shadedPattern >
275
- </relocation >
276
277
</relocations >
277
278
</configuration >
278
279
</execution >
Original file line number Diff line number Diff line change 22
22
public class JavaWorkerClient implements AutoCloseable {
23
23
public JavaWorkerClient (IApplication app ) {
24
24
WorkerLogManager .initialize (this , app .logToConsole ());
25
- ManagedChannelBuilder <?> chanBuilder = ManagedChannelBuilder .forAddress (app .getHost (), app .getPort ()).usePlaintext (true );
25
+ ManagedChannelBuilder <?> chanBuilder = ManagedChannelBuilder .forAddress (app .getHost (), app .getPort ()).usePlaintext ();
26
26
chanBuilder .maxInboundMessageSize (Integer .MAX_VALUE );
27
27
28
28
this .channel = chanBuilder .build ();
You can’t perform that action at this time.
0 commit comments