We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83e6976 commit 4f85233Copy full SHA for 4f85233
checkipaconsistency/__init__.py
@@ -22,4 +22,4 @@
22
along with this program. If not, see <http://www.gnu.org/licenses/>.
23
"""
24
25
-VERSION = '2.7.3'
+VERSION = '2.7.4'
checkipaconsistency/freeipaserver.py
@@ -417,7 +417,7 @@ def _replication_agreements(self):
417
host = host.replace('.%s' % self._domain, '')
418
status = attrs['nsds5replicaLastUpdateStatus'][0].decode('utf-8')
419
status = status.replace('Error ', '').partition(' ')[0].strip('()')
420
- if status not in ['0']:
+ if status not in ['0', '18']:
421
healthy = False
422
msg.append('%s %s' % (host, status))
423
0 commit comments