fix specs

This commit is contained in:
BONNAURE Olivier 2024-04-09 17:42:58 +02:00
parent b605af00be
commit 699e7dff6e
2 changed files with 2 additions and 2 deletions

View file

@ -18,6 +18,6 @@ assert(string.sub(UuidV4(), 9, 9) == "-")
assert(string.sub(UuidV4(), 14, 14) == "-")
assert(string.sub(UuidV4(), 15, 15) == "4")
assert(string.sub(UuidV4(), 19, 19) == "-")
local y = string.sub(UuidV4(), 20, 20)
y = string.sub(UuidV4(), 20, 20)
assert(y == "8" or y == "9" or y == "a" or y == "b")
assert(string.sub(UuidV4(), 24, 24) == "-")

View file

@ -1089,7 +1089,7 @@ FUNCTIONS
- keepalive (default = false): configures each request to keep the
connection open (unless closed by the server) and reuse for the
next request to the same host. This option is disabled when SSL
connection is used.
connection is used.
The mapping of hosts and their sockets is stored in a table
assigned to the `keepalive` field itself, so it can be passed to
the next call.