Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
[#53]ConfigCenterClient 中环境名没生效 (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
liubao68 authored Oct 31, 2020
1 parent 7be1b85 commit 60efa84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public QueryConfigurationsResponse queryConfigurations(QueryConfigurationsReques
Map<String, String> headers = new HashMap<>();
headers.put("x-environment", request.getEnvironment());
HttpRequest httpRequest = new HttpRequest(addressManager.address() + "/configuration/items?dimensionsInfo="
+ HttpUtils.encodeURLParam(dimensionsInfo) + "&revision=" + request.getRevision(), null, null,
+ HttpUtils.encodeURLParam(dimensionsInfo) + "&revision=" + request.getRevision(), headers, null,
HttpRequest.GET);

HttpResponse httpResponse = httpTransport.doRequest(httpRequest);
Expand Down

0 comments on commit 60efa84

Please sign in to comment.