Skip to content

Commit

Permalink
Fixed pre-configured docs link points to the wrong page and functiona…
Browse files Browse the repository at this point in the history
…l tests configs (elastic#68606)

* Fixed pre-configured docs link points to the wrong page and functional tests configs

* Fixed doc link
  • Loading branch information
YulNaumenko committed Jun 9, 2020
1 parent b2d069f commit 6843a65
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ two out-of-the box connectors: <<slack-action-type, Slack>> and <<webhook-action
my-slack1: <1>
actionTypeId: .slack <2>
name: 'Slack #xyz' <3>
config: <4>
secrets: <4>
webhookUrl: 'https://hooks.slack.com/services/abcd/efgh/ijklmnopqrstuvwxyz'
webhook-service:
actionTypeId: .webhook
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export const ConnectorEditFlyout = ({
)}
</EuiText>
<EuiLink
href={`${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/pre-configured-connectors.html`}
href={`${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/pre-configured-action-types-and-connectors.html`}
target="_blank"
>
<FormattedMessage
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/alerting_api_integration/common/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function createTestConfig(name: string, options: CreateTestConfigOptions)
'my-slack1': {
actionTypeId: '.slack',
name: 'Slack#xyz',
config: {
secrets: {
webhookUrl: 'https://hooks.slack.com/services/abcd/efgh/ijklmnopqrstuvwxyz',
},
},
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/functional_with_es_ssl/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
'my-slack1': {
actionTypeId: '.slack',
name: 'Slack#xyztest',
config: {
secrets: {
webhookUrl: 'https://hooks.slack.com/services/abcd/efgh/ijklmnopqrstuvwxyz',
},
},
Expand Down

0 comments on commit 6843a65

Please sign in to comment.