mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-05-16 22:58:02 +00:00
BUG/MINOR: http-ana: Fix TX_L7_RETRY and TX_D_L7_RETRY values
These values are obviously wrong. There is an extra zero at the end for both defines. By chance, it is harmless. But it is better to fix it. This patch should be backported as far as 2.6.
This commit is contained in:
parent
3fc38593d5
commit
1fa6eb2eb9
@ -73,8 +73,8 @@
|
||||
/* used only for keep-alive purposes, to indicate we're on a second transaction */
|
||||
#define TX_NOT_FIRST 0x00040000 /* the transaction is not the first one */
|
||||
|
||||
#define TX_L7_RETRY 0x000800000 /* The transaction may attempt L7 retries */
|
||||
#define TX_D_L7_RETRY 0x001000000 /* Disable L7 retries on this transaction, even if configured to do it */
|
||||
#define TX_L7_RETRY 0x00080000 /* The transaction may attempt L7 retries */
|
||||
#define TX_D_L7_RETRY 0x00100000 /* Disable L7 retries on this transaction, even if configured to do it */
|
||||
|
||||
/* This function is used to report flags in debugging tools. Please reflect
|
||||
* below any single-bit flag addition above in the same order via the
|
||||
|
Loading…
Reference in New Issue
Block a user