]> git.immae.eu Git - github/fretlink/ansible-kong-app.git/blobdiff - dhall/server/service/plugin/CorrelationId.dhall
upgrade dhall to 1.26.1 and merge types and terms
[github/fretlink/ansible-kong-app.git] / dhall / server / service / plugin / CorrelationId.dhall
diff --git a/dhall/server/service/plugin/CorrelationId.dhall b/dhall/server/service/plugin/CorrelationId.dhall
deleted file mode 100644 (file)
index fc69f4f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-let Plugin = ./Plugin.dhall
-
-let config = ./Config.dhall
-
-in    λ(generator : Optional Text)
-       →   { name =
-                       "correlation-id"
-               , config =
-                       config.CorrelationId
-                       { header_name =
-                               "X-correl"
-                       , echo_downstream =
-                               True
-                       , generator =
-                               Optional/fold
-                               Text
-                               generator
-                               Text
-                               (λ(t : Text) → t)
-                               "uuid#counter"
-                       }
-               }
-         : Plugin