Thursday, April 16, 2020

[389-commits] [389-ds-base] branch 389-ds-base-1.4.2 updated: Issue 50545 - the check for the ds version for the backend config was broken

This is an automated email from the git hooks/post-receive script.

mreynolds pushed a commit to branch 389-ds-base-1.4.2
in repository 389-ds-base.

The following commit(s) were added to refs/heads/389-ds-base-1.4.2 by this push:
new 92e6937 Issue 50545 - the check for the ds version for the backend config was broken
92e6937 is described below

commit 92e6937eb56371939e279eeec42209cc97fa1d81
Author: Mark Reynolds <mreynolds@redhat.com>
AuthorDate: Thu Apr 16 09:31:59 2020 -0400

Issue 50545 - the check for the ds version for the backend config was broken

Description: In 1.4.2 the is_ds_older() function took different parameters,
this needs to be adjusted

Relates: https://pagure.io/389-ds-base/issue/50545

Reviewed by: mreynolds (one line commit rule)
---
src/lib389/lib389/monitor.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib389/lib389/monitor.py b/src/lib389/lib389/monitor.py
index 73750c3..a111182 100644
--- a/src/lib389/lib389/monitor.py
+++ b/src/lib389/lib389/monitor.py
@@ -161,7 +161,7 @@ class MonitorLDBM(DSLdapObject):
'nsslapd-db-pages-in-use',
'nsslapd-db-txn-region-wait-rate',
]
- if not ds_is_older("1.4.0", instance=instance):
+ if not ds_is_older("1.4.0"):
self._backend_keys.extend([
'normalizeddncachetries',
'normalizeddncachehits',

--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
389-commits mailing list -- 389-commits@lists.fedoraproject.org
To unsubscribe send an email to 389-commits-leave@lists.fedoraproject.org
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/389-commits@lists.fedoraproject.org

No comments:

Post a Comment