44 lines
1.5 KiB
Diff
44 lines
1.5 KiB
Diff
From df632eec450791559a4a7644f241964397c10ff9 Mon Sep 17 00:00:00 2001
|
|
From: Sumit Bose <sbose@redhat.com>
|
|
Date: Fri, 5 Jun 2020 13:59:25 +0200
|
|
Subject: [PATCH] ipa: add failover to subdomain override lookups
|
|
|
|
In the ipa_subdomain_account request failover handling was missing.
|
|
|
|
Related to https://github.com/SSSD/sssd/issues/5075
|
|
(was https://pagure.io/SSSD/sssd/issue/4114)
|
|
|
|
Reviewed-by: Pawel Polawski <ppolawsk@redhat.com>
|
|
---
|
|
src/providers/ipa/ipa_subdomains_id.c | 14 ++++++++++++++
|
|
1 file changed, 14 insertions(+)
|
|
|
|
diff --git a/src/providers/ipa/ipa_subdomains_id.c b/src/providers/ipa/ipa_subdomains_id.c
|
|
index 1224c7b73..36f32fae8 100644
|
|
--- a/src/providers/ipa/ipa_subdomains_id.c
|
|
+++ b/src/providers/ipa/ipa_subdomains_id.c
|
|
@@ -208,6 +208,20 @@ static void ipa_subdomain_account_got_override(struct tevent_req *subreq)
|
|
&state->override_attrs);
|
|
talloc_zfree(subreq);
|
|
if (ret != EOK) {
|
|
+ ret = sdap_id_op_done(state->op, ret, &dp_error);
|
|
+
|
|
+ if (dp_error == DP_ERR_OK && ret != EOK) {
|
|
+ /* retry */
|
|
+ subreq = sdap_id_op_connect_send(state->op, state, &ret);
|
|
+ if (subreq == NULL) {
|
|
+ DEBUG(SSSDBG_OP_FAILURE, "sdap_id_op_connect_send failed.\n");
|
|
+ goto fail;
|
|
+ }
|
|
+ tevent_req_set_callback(subreq, ipa_subdomain_account_connected,
|
|
+ req);
|
|
+ return;
|
|
+ }
|
|
+
|
|
DEBUG(SSSDBG_OP_FAILURE, "IPA override lookup failed: %d\n", ret);
|
|
goto fail;
|
|
}
|
|
--
|
|
2.21.3
|
|
|