Fixed#9651: DQ for datalake not showing on UI (#9668)

This commit is contained in:
Parth Panchal 2023-01-10 21:36:25 +05:30 committed by GitHub
parent cfacbfa168
commit 1ac0d47147
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,6 @@ import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.parameters.RequestBody;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import java.io.IOException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.UUID;
import javax.json.JsonPatch;
import javax.validation.Valid;
@ -164,8 +162,7 @@ public class TestCaseResource extends EntityResource<TestCase, TestCaseRepositor
ResourceContextInterface resourceContext;
if (entityLink != null) {
EntityLink entityLinkParsed = EntityLink.parse(entityLink);
filter.addQueryParam(
"entityFQN", URLEncoder.encode(entityLinkParsed.getFullyQualifiedFieldValue(), StandardCharsets.UTF_8));
filter.addQueryParam("entityFQN", entityLinkParsed.getFullyQualifiedFieldValue());
resourceContext = TestCaseResourceContext.builder().entityLink(entityLinkParsed).build();
} else {
resourceContext = TestCaseResourceContext.builder().build();