aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/server/service/plugin/correlationId.dhall
diff options
context:
space:
mode:
authorpaulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com>2020-08-13 17:54:24 +0200
committerGitHub <noreply@github.com>2020-08-13 17:54:24 +0200
commitf131496c3e23d30c30dd597ab734b0f771f4a4d9 (patch)
tree034b7aabaecd61229985c3346a75e4496f89743e /dhall/server/service/plugin/correlationId.dhall
parent25250c8c24a3c0b32c92eee5552ad7156115f03c (diff)
parentd8c5e33f6015e3f17aaf5fd290b1834e6e6c1049 (diff)
downloadansible-kong-app-f131496c3e23d30c30dd597ab734b0f771f4a4d9.tar.gz
ansible-kong-app-f131496c3e23d30c30dd597ab734b0f771f4a4d9.tar.zst
ansible-kong-app-f131496c3e23d30c30dd597ab734b0f771f4a4d9.zip
Merge pull request #19 from paulrbr-fl/dhall-1.33-compatv0.31
dhall: BREAKING CHANGE update dhall config for 1.33+ compatibility
Diffstat (limited to 'dhall/server/service/plugin/correlationId.dhall')
-rw-r--r--dhall/server/service/plugin/correlationId.dhall24
1 files changed, 9 insertions, 15 deletions
diff --git a/dhall/server/service/plugin/correlationId.dhall b/dhall/server/service/plugin/correlationId.dhall
index d5d5928..41c5720 100644
--- a/dhall/server/service/plugin/correlationId.dhall
+++ b/dhall/server/service/plugin/correlationId.dhall
@@ -2,22 +2,16 @@ let Plugin = ./Plugin.dhall
2 2
3let config = ./Config.dhall 3let config = ./Config.dhall
4 4
5in λ(generator : Optional Text) 5in λ(generator : Optional Text) →
6 → { name = 6 { name = "correlation-id"
7 "correlation-id"
8 , config = 7 , config =
9 config.CorrelationId 8 config.CorrelationId
10 { header_name = 9 { header_name = "X-correl"
11 "X-correl" 10 , echo_downstream = True
12 , echo_downstream = 11 , generator =
13 True 12 merge
14 , generator = 13 { None = "uuid#counter", Some = λ(x : Text) → x }
15 Optional/fold 14 generator
16 Text 15 }
17 generator
18 Text
19 (λ(t : Text) → t)
20 "uuid#counter"
21 }
22 } 16 }
23 : Plugin 17 : Plugin