Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cli/serve/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export default function (program) {
// links in other documentation sources, like "View this tutorial [here](http://localhost:5601/app/tutorial/xyz)".
// We can tell users they only have to run with `yarn start --run-examples` to get those
// local links to work. Similar to what we do for "View in Console" links in our
// elastic.co links.
// opensearch.co links.
basePath: opts.runExamples ? false : !!opts.basePath,
optimize: !!opts.optimize,
disableOptimizer: !opts.optimizer,
Expand Down
2 changes: 1 addition & 1 deletion src/cli_plugin/install/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { fromRoot } from '../../core/server/utils';
function generateUrls({ version, plugin }) {
return [
plugin,
`https://artifacts.elastic.co/downloads/kibana-plugins/${plugin}/${plugin}-${version}.zip`,
Comment thread
ananzh marked this conversation as resolved.
`https://artifacts.opensearch.co/downloads/kibana-plugins/${plugin}/${plugin}-${version}.zip`,
];
}

Expand Down
4 changes: 2 additions & 2 deletions src/cli_plugin/install/settings.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe('parse function', function () {
"timeout": 0,
"urls": Array [
"plugin name",
"https://artifacts.elastic.co/downloads/kibana-plugins/plugin name/plugin name-1234.zip",
"https://artifacts.opensearch.co/downloads/kibana-plugins/plugin name/plugin name-1234.zip",
],
"version": 1234,
"workingPath": <absolute path>/plugins/.plugin.installing,
Expand All @@ -88,7 +88,7 @@ describe('parse function', function () {
"timeout": 0,
"urls": Array [
"plugin name",
"https://artifacts.elastic.co/downloads/kibana-plugins/plugin name/plugin name-1234.zip",
"https://artifacts.opensearch.co/downloads/kibana-plugins/plugin name/plugin name-1234.zip",
],
"version": 1234,
"workingPath": <absolute path>/plugins/.plugin.installing,
Expand Down
Loading