Skip to content

Commit

Permalink
Merge branch 'main' into search-remove-warning-toast
Browse files Browse the repository at this point in the history
  • Loading branch information
kibanamachine authored Nov 9, 2021
2 parents 67639d2 + 7d27afe commit 080725f
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 40 deletions.
5 changes: 0 additions & 5 deletions src/dev/ci_setup/.bazelrc-ci

This file was deleted.

11 changes: 0 additions & 11 deletions src/dev/ci_setup/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ echo " -- PARENT_DIR='$PARENT_DIR'"
echo " -- KIBANA_PKG_BRANCH='$KIBANA_PKG_BRANCH'"
echo " -- TEST_ES_SNAPSHOT_VERSION='$TEST_ES_SNAPSHOT_VERSION'"

###
### copy .bazelrc-ci into $HOME/.bazelrc
###
cp "src/dev/ci_setup/.bazelrc-ci" "$HOME/.bazelrc";

###
### append auth token to buildbuddy into "$HOME/.bazelrc";
###
echo "# Appended by src/dev/ci_setup/setup.sh" >> "$HOME/.bazelrc"
echo "build --remote_header=x-buildbuddy-api-key=$KIBANA_BUILDBUDDY_CI_API_KEY" >> "$HOME/.bazelrc"

###
### install dependencies
###
Expand Down
20 changes: 0 additions & 20 deletions src/dev/ci_setup/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -181,24 +181,4 @@ if [[ -d "$ES_DIR" && -f "$ES_JAVA_PROP_PATH" ]]; then
export JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
fi

###
### copy .bazelrc-ci into $HOME/.bazelrc
###
cp -f "$KIBANA_DIR/src/dev/ci_setup/.bazelrc-ci" "$HOME/.bazelrc";

###
### remove write permissions on buildbuddy remote cache for prs
###
if [[ "$ghprbPullId" ]] ; then
echo "# Appended by $KIBANA_DIR/src/dev/ci_setup/setup.sh" >> "$HOME/.bazelrc"
echo "# Uploads logs & artifacts without writing to cache" >> "$HOME/.bazelrc"
echo "build --noremote_upload_local_results" >> "$HOME/.bazelrc"
fi

###
### append auth token to buildbuddy into "$HOME/.bazelrc";
###
echo "# Appended by $KIBANA_DIR/src/dev/ci_setup/setup.sh" >> "$HOME/.bazelrc"
echo "build --remote_header=x-buildbuddy-api-key=$KIBANA_BUILDBUDDY_CI_API_KEY" >> "$HOME/.bazelrc"

export CI_ENV_SETUP=true
2 changes: 1 addition & 1 deletion x-pack/plugins/apm/server/routes/correlations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as t from 'io-ts';
import Boom from '@hapi/boom';

import { i18n } from '@kbn/i18n';
import { toNumberRt } from '@kbn/io-ts-utils';
import { toNumberRt } from '@kbn/io-ts-utils/to_number_rt';

import { isActivePlatinumLicense } from '../../common/license_check';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const EventFiltersListEmptyState = memo<{
body={
<FormattedMessage
id="xpack.securitySolution.eventFilters.listEmpty.message"
defaultMessage="There are currently no event filters on your endpoint."
defaultMessage="Add an event filter to exclude high volume or unwanted events from being written to Elasticsearch."
/>
}
actions={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const HostIsolationExceptionsEmptyState = memo<{ onAdd: () => void }>(({
body={
<FormattedMessage
id="xpack.securitySolution.hostIsolationExceptions.listEmpty.message"
defaultMessage="There are currently no host isolation exceptions"
defaultMessage="Add a Host isolation exception to allow isolated hosts to communicate with specific IPs."
/>
}
actions={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const EmptyState = memo<{
body={
<FormattedMessage
id="xpack.securitySolution.trustedapps.listEmptyState.message"
defaultMessage="There are currently no trusted applications on your endpoint."
defaultMessage="Add a trusted application to improve performance or alleviate conflicts with other applications running on your hosts."
/>
}
actions={
Expand Down

0 comments on commit 080725f

Please sign in to comment.