Skip to content

Commit

Permalink
add instance name to resource header
Browse files Browse the repository at this point in the history
  • Loading branch information
mutianf committed Jun 16, 2022
1 parent 9826a52 commit adeedda
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,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

0 comments on commit adeedda

Please sign in to comment.