aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/server/service/plugin/CorrelationId.dhall
blob: d96bfc982a02c07c22782cb4daed066203430b52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
    let Plugin = ./Plugin.dhall

in  let config = constructors ./Config.dhall

in    { name =
          "correlation-id"
      , config =
          config.CorrelationId
          { header_name = "X-correl", echo_downstream = True }
      }
    : Plugin