]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUG/MINOR: sample: Make sure to return stable IDs in the unique-id fetch
authorTim Duesterhus <tim@bastelstu.be>
Wed, 26 Feb 2020 15:20:49 +0000 (16:20 +0100)
committerWilly Tarreau <w@1wt.eu>
Thu, 27 Feb 2020 02:50:10 +0000 (03:50 +0100)
commit530408f976e5fe2f2f2b4b733b39da36770b566f
treeec9380c3d6485337151886eb83f480ec0b323d52
parent55c5399846a55af036ed2e67c08484cc76c0d1c2
BUG/MINOR: sample: Make sure to return stable IDs in the unique-id fetch

Previously when the `unique-id-format` contained non-deterministic parts,
such as the `uuid` fetch each use of the `unique-id` fetch would generate
a new unique ID, replacing the old one. The following configuration shows
the error:

  global
        log stdout format short daemon

  listen test
        log global
        log-format "%ID"
        unique-id-format %{+X}o\ TEST-%[uuid]

        mode http
        bind *:8080
        http-response set-header A %[unique-id]
        http-response set-header B %[unique-id]
        server example example.com:80

Without the patch the contents of the `A` and `B` response header would
differ.

This bug was introduced in commit f4011ddcf5b41284d2b137e84c25f2d1264ce458,
which was first released with HAProxy 1.7-dev3.

This fix should be backported to HAProxy 1.7+.
src/http_fetch.c