Skip to content

Commit

Permalink
Compatible with v2 openapi to query configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
KiteSoar committed Feb 8, 2025
1 parent 3f636bf commit 87c5b58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public String getName() {
public ConfigQueryChainRequest extract(HttpServletRequest request) {
final String dataId = request.getParameter("dataId");
final String group = request.getParameter("group");
String tenant = request.getParameter("tenant");
String tenant = request.getParameter("namespaceId") != null ? request.getParameter("namespaceId") : request.getParameter("tenant");
if (StringUtils.isBlank(tenant)) {
tenant = StringUtils.EMPTY;
}
Expand Down

0 comments on commit 87c5b58

Please sign in to comment.