Skip to content

Commit

Permalink
[Reporting] Increase capture.timeouts.openUrl to 1 minute (elastic#75207
Browse files Browse the repository at this point in the history
)

* [Reporting] Increase capture.timeouts.openUrl to 1 minute

* update the docs
  • Loading branch information
tsullivan committed Aug 18, 2020
1 parent 6c4b5d3 commit f456f3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/settings/reporting-settings.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ control the capturing process.
| Specify how long to allow the Reporting browser to wait for the "Loading..." screen
to dismiss and find the initial data for the Kibana page. If the time is
exceeded, a page screenshot is captured showing the current state, and the download link shows a warning message.
Defaults to `30000` (30 seconds).
Defaults to `60000` (1 minute).

| `xpack.reporting.capture.timeouts.waitForElements`
| Specify how long to allow the Reporting browser to wait for all visualization
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/reporting/server/config/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const RulesSchema = schema.object({

const CaptureSchema = schema.object({
timeouts: schema.object({
openUrl: schema.number({ defaultValue: 30000 }),
openUrl: schema.number({ defaultValue: 60000 }),
waitForElements: schema.number({ defaultValue: 30000 }),
renderComplete: schema.number({ defaultValue: 30000 }),
}),
Expand Down

0 comments on commit f456f3e

Please sign in to comment.