-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Add gRPC client sample with Spring Integration #379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
d82d70e
0211714
984cd45
d8bc0e5
685bcb0
e3b136b
b1c89ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -898,6 +898,11 @@ project('grpc-client') { | |
| //Test | ||
| testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
| testImplementation "org.springframework.grpc:spring-grpc-test" | ||
|
|
||
| configurations { | ||
| testImplementation.exclude group: 'io.grpc', module: 'grpc-netty' | ||
| testRuntimeOnly.exclude group: 'io.grpc', module: 'grpc-netty' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, this means that |
||
| } | ||
| } | ||
|
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think testRumtimeOnly should be enough.
I guess we need it for the client part to connect anyway at runtime .
Or just come back to named channel in test props !