mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-08 15:01:37 -04:00
This test appears to have been written to use the current timestamp in the Consul keys it uses for testing just to minimize the risk of collisions with objects already present in the KV store. Unfortunately, modern Consul now rejects this shape of key because the default string representation of a timestamp includes characters that Consul does not allow. This commit changes it to use a decimal representation of the integer unix timestamp representation instead, which achieves a similar result using a less disruptive set of characters. Signed-off-by: Martin Atkins <mart@degeneration.co.uk>