Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2018-09-12 01:04:40 +0300
committerStan Hu <stanhu@gmail.com>2018-09-12 01:16:29 +0300
commit5c79c68ee755fb907227e3a74f018fc209c82242 (patch)
tree2add5cff62d068b7a98b19b8b4d431c89f0f1093 /changelogs
parente91dc8f4badfdb4742d1662f34edd85f43fb317f (diff)
Filter any parameters ending with "key" in logs
Rails does a partial match for strings in the filter_parameters configuration, so the parameter "key" causes "key_id" to be filtered even though it's a useful parameter for debugging internal API issues. We now revise this filter to make any parameter ending with "key" is filtered. Relates to https://gitlab.com/gitlab-com/gl-infra/production/issues/463
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/unreleased/sh-allow-key-id-in-params.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/changelogs/unreleased/sh-allow-key-id-in-params.yml b/changelogs/unreleased/sh-allow-key-id-in-params.yml
new file mode 100644
index 00000000000..2be1cfb0ed3
--- /dev/null
+++ b/changelogs/unreleased/sh-allow-key-id-in-params.yml
@@ -0,0 +1,5 @@
+---
+title: Filter any parameters ending with "key" in logs
+merge_request: 21688
+author:
+type: changed