Skip to content

Commit

Permalink
Fixed timeout on sfdx texei:sharingcalc:suspend
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienTaillon committed Mar 20, 2020
1 parent 19c881d commit 2c65dfc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/texei/sharingcalc/suspend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ export default class Suspend extends SfdxCommand {
await page.goto(
`${instanceUrl}/secur/frontdoor.jsp?sid=${
this.org.getConnection().accessToken
}&startURL=${encodeURIComponent(SHARING_CALC_PATH)}`,
{ waitUntil: ["load", "domcontentloaded", "networkidle0"] }
}`,
{ waitUntil: ["domcontentloaded", "networkidle0"] }
);
const navigationPromise = page.waitForNavigation();
await navigationPromise;
Expand Down Expand Up @@ -104,4 +104,4 @@ export default class Suspend extends SfdxCommand {

return { message: `Suspended ${mapSharingLabel.get(this.flags.scope)} Calculations` };
}
}
}

0 comments on commit 2c65dfc

Please sign in to comment.