projects
/
haproxy-2.5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1dec5c7
)
MINOR: resolvers: Purge answer items when a SRV resolution triggers an error
author
Christopher Faulet
<cfaulet@haproxy.com>
Wed, 10 Mar 2021 14:46:46 +0000
(15:46 +0100)
committer
Christopher Faulet
<cfaulet@haproxy.com>
Fri, 12 Mar 2021 16:41:28 +0000
(17:41 +0100)
When a SRV request trigger an error, if we decide to handle the error
because last_valid duration is expired, the answer list may be purged. All
items are considered as obsolete.
src/server.c
patch
|
blob
|
history
diff --git
a/src/server.c
b/src/server.c
index
3b4d41e
..
412bd42
100644
(file)
--- a/
src/server.c
+++ b/
src/server.c
@@
-3293,6
+3293,8
@@
int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code
HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
}
+ resolv_purge_resolution_answer_records(res);
+
return 1;
}