Skip to content

Commit

Permalink
Merge pull request #521 from amtrack/fix/disable-mydomainresolver
Browse files Browse the repository at this point in the history
fix: disable MyDomainResolver because of issues with Enhanced Domains
  • Loading branch information
amtrack authored Oct 16, 2022
2 parents a6900c0 + d4bb221 commit 9aa5364
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/browserforce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ export class Browserforce {
let page;
const result = await pRetry(
async () => {
await this.resolveDomains();
// there seems to be an issue with Enhanced Domains
// await this.resolveDomains();
page = await this.browser.newPage();
page.setDefaultNavigationTimeout(
parseInt(process.env.BROWSERFORCE_NAVIGATION_TIMEOUT_MS, 10) || 90000
Expand Down

0 comments on commit 9aa5364

Please sign in to comment.