Skip to content

Commit

Permalink
remove encode and then decode in rest util
Browse files Browse the repository at this point in the history
  • Loading branch information
Prashant Singh committed Nov 15, 2024
1 parent e6a3e71 commit 95c4b4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public Response loadNamespaceMetadata(
}

private static Namespace decodeNamespace(String namespace) {
return RESTUtil.decodeNamespace(URLEncoder.encode(namespace, Charset.defaultCharset()));
return RESTUtil.decodeNamespace(namespace);
}

@Override
Expand Down

0 comments on commit 95c4b4f

Please sign in to comment.