Skip to content

Commit

Permalink
ipatests: fix test_ipactl_scenario_check
Browse files Browse the repository at this point in the history
The test is comparing the PID of services before and after
calling ipactl start, expecting to have the same value.
It should not compare the pid for ipa-dnskeysyncd as this service
is automatically restarted upon failure.

Fixes: https://pagure.io/freeipa/issue/9415

Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
  • Loading branch information
flo-renaud authored and rcritten committed Oct 4, 2023
1 parent e459e5b commit 430054d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipatests/test_integration/test_installation.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def get_pki_tomcatd_pid(host):
def get_ipa_services_pids(host):
ipa_services_name = [
"krb5kdc", "kadmin", "named", "httpd", "ipa-custodia",
"pki_tomcatd", "ipa-dnskeysyncd"
"pki_tomcatd"
]
pids_of_ipa_services = {}
for name in ipa_services_name:
Expand Down

0 comments on commit 430054d

Please sign in to comment.