diff --git a/openmetadata-ui/src/main/resources/ui/playwright/utils/common.ts b/openmetadata-ui/src/main/resources/ui/playwright/utils/common.ts index e1fde2b5982..718e4df7027 100644 --- a/openmetadata-ui/src/main/resources/ui/playwright/utils/common.ts +++ b/openmetadata-ui/src/main/resources/ui/playwright/utils/common.ts @@ -48,8 +48,9 @@ export const getToken = async (page: Page) => { export const getAuthContext = async (token: string) => { return await request.newContext({ // Default timeout is 30s making it to 1m for AUTs - timeout: 60000, + timeout: 90000, extraHTTPHeaders: { + Connection: 'keep-alive', Authorization: `Bearer ${token}`, }, });