mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-01 11:09:14 +00:00
Fixed#9651: DQ for datalake not showing on UI (#9668)
This commit is contained in:
parent
cfacbfa168
commit
1ac0d47147
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user