Skip to content

Commit 75c3ad2

Browse files
shrabantipaul-collateShrabanti Paul
andauthored
Fix owner search retry hanging on Container entities (#27828)
Co-authored-by: Shrabanti Paul <shrabantipaul@Shrabantis-MacBook-Pro.local>
1 parent 663e4d9 commit 75c3ad2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • openmetadata-ui/src/main/resources/ui/playwright/utils

openmetadata-ui/src/main/resources/ui/playwright/utils/entity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export const addOwner = async ({
158158
const searchRetry = page.waitForResponse(
159159
(response) =>
160160
response.url().includes('/api/v1/search/query') &&
161-
response.url().includes('user_search_index')
161+
response.url().includes(encodeURIComponent(owner))
162162
);
163163
await ownerSearchInput.fill('');
164164
await ownerSearchInput.fill(owner);

0 commit comments

Comments
 (0)