aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/server/service/plugin/CorrelationId.dhall
diff options
context:
space:
mode:
authorClément Delafargue <39330590+clementd-fretlink@users.noreply.github.com>2019-10-07 09:55:50 +0200
committerGitHub <noreply@github.com>2019-10-07 09:55:50 +0200
commit027a2fa61a6044b2e967b29195312e4d98a96078 (patch)
treed6ffd754b83687e45db23522aa8273218071732e /dhall/server/service/plugin/CorrelationId.dhall
parentcfcebcd5f0c7a99ab60de773e67e7ee35e8b0f0a (diff)
parent25bf64cbc9a8ed4fef36c15756f9d7f8e96e2d06 (diff)
downloadansible-kong-app-027a2fa61a6044b2e967b29195312e4d98a96078.tar.gz
ansible-kong-app-027a2fa61a6044b2e967b29195312e4d98a96078.tar.zst
ansible-kong-app-027a2fa61a6044b2e967b29195312e4d98a96078.zip
Merge pull request #17 from clementd-fretlink/polykindsv0.20
upgrade dhall to 1.26.1 and merge types and terms
Diffstat (limited to 'dhall/server/service/plugin/CorrelationId.dhall')
-rw-r--r--dhall/server/service/plugin/CorrelationId.dhall23
1 files changed, 0 insertions, 23 deletions
diff --git a/dhall/server/service/plugin/CorrelationId.dhall b/dhall/server/service/plugin/CorrelationId.dhall
deleted file mode 100644
index fc69f4f..0000000
--- a/dhall/server/service/plugin/CorrelationId.dhall
+++ /dev/null
@@ -1,23 +0,0 @@
1let Plugin = ./Plugin.dhall
2
3let config = ./Config.dhall
4
5in λ(generator : Optional Text)
6 → { name =
7 "correlation-id"
8 , config =
9 config.CorrelationId
10 { header_name =
11 "X-correl"
12 , echo_downstream =
13 True
14 , generator =
15 Optional/fold
16 Text
17 generator
18 Text
19 (λ(t : Text) → t)
20 "uuid#counter"
21 }
22 }
23 : Plugin