Skip to content
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

feat: use PingAndWarm request for channel priming #1179

Merged
merged 7 commits into from
Jul 19, 2022
Prev Previous commit
Next Next commit
add instance name to resource header
  • Loading branch information
mutianf committed Jul 19, 2022
commit dd63d68ce6ac0a4f2befc6820ad668bc1fe7b97e
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,9 @@ private UnaryCallable<PingAndWarmRequest, PingAndWarmResponse> createPingAndWarm
new RequestParamsExtractor<PingAndWarmRequest>() {
@Override
public Map<String, String> extract(PingAndWarmRequest request) {
return ImmutableMap.of("app_profile_id", request.getAppProfileId());
return ImmutableMap.of(
"name", request.getName(),
"app_profile_id", request.getAppProfileId());
}
})
.build(),
Expand Down