Re: [Freeipa-devel] [PATCH 0398] logger: Use warning instead of warn

2016-01-19 Thread Martin Basti



On 18.01.2016 17:50, Martin Basti wrote:



On 18.01.2016 17:49, Martin Basti wrote:



On 15.01.2016 17:15, Tomas Babej wrote:


On 01/15/2016 05:12 PM, Martin Basti wrote:


On 15.01.2016 16:27, Tomas Babej wrote:

Hi,

this should build up to another pylint-related patch Martin^2 has 
in works.


Tomas




NACK :)

* Module ipalib.plugins.dns
ipalib/plugins/dns.py:3441: [E1101(no-member),
dnsrecord.wait_for_modified_attr] Class 'log' has no 'warn' member)


My regexp was too strict, it seems :)

Updated patch attached.

ACK
log.warn() is deprecated
https://docs.python.org/3/library/logging.html#logging.Logger.warning


Pushed to master: 78c5bf9f8e85b4c6c9b67b4a26acedfd45a2c86f


I accidentally pushed the first patch, so missing line is here
Pushed to master: ddf2c813b453a85c22dbf278a575d3c6406b4471

--
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code


Re: [Freeipa-devel] [PATCH 0398] logger: Use warning instead of warn

2016-01-18 Thread Martin Basti



On 18.01.2016 17:49, Martin Basti wrote:



On 15.01.2016 17:15, Tomas Babej wrote:


On 01/15/2016 05:12 PM, Martin Basti wrote:


On 15.01.2016 16:27, Tomas Babej wrote:

Hi,

this should build up to another pylint-related patch Martin^2 has 
in works.


Tomas




NACK :)

* Module ipalib.plugins.dns
ipalib/plugins/dns.py:3441: [E1101(no-member),
dnsrecord.wait_for_modified_attr] Class 'log' has no 'warn' member)


My regexp was too strict, it seems :)

Updated patch attached.

ACK
log.warn() is deprecated
https://docs.python.org/3/library/logging.html#logging.Logger.warning


Pushed to master: 78c5bf9f8e85b4c6c9b67b4a26acedfd45a2c86f

--
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code


Re: [Freeipa-devel] [PATCH 0398] logger: Use warning instead of warn

2016-01-18 Thread Martin Basti



On 15.01.2016 17:15, Tomas Babej wrote:


On 01/15/2016 05:12 PM, Martin Basti wrote:


On 15.01.2016 16:27, Tomas Babej wrote:

Hi,

this should build up to another pylint-related patch Martin^2 has in works.

Tomas




NACK :)

* Module ipalib.plugins.dns
ipalib/plugins/dns.py:3441: [E1101(no-member),
dnsrecord.wait_for_modified_attr] Class 'log' has no 'warn' member)


My regexp was too strict, it seems :)

Updated patch attached.

ACK
log.warn() is deprecated
https://docs.python.org/3/library/logging.html#logging.Logger.warning

--
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code


Re: [Freeipa-devel] [PATCH 0398] logger: Use warning instead of warn

2016-01-15 Thread Tomas Babej


On 01/15/2016 05:12 PM, Martin Basti wrote:
> 
> 
> On 15.01.2016 16:27, Tomas Babej wrote:
>> Hi,
>>
>> this should build up to another pylint-related patch Martin^2 has in works.
>>
>> Tomas
>>
>>
>>
> NACK :)
> 
> * Module ipalib.plugins.dns
> ipalib/plugins/dns.py:3441: [E1101(no-member),
> dnsrecord.wait_for_modified_attr] Class 'log' has no 'warn' member)
> 

My regexp was too strict, it seems :)

Updated patch attached.
From 66bcfd88cf6020ecc7aca769a41cdf1dd747ae19 Mon Sep 17 00:00:00 2001
From: Tomas Babej 
Date: Fri, 15 Jan 2016 16:25:33 +0100
Subject: [PATCH] logger: Use warning instead of warn

---
 install/tools/ipa-httpd-kdcproxy | 10 +-
 ipa-client/ipaclient/ipadiscovery.py |  6 +++---
 ipalib/plugins/dns.py|  4 ++--
 ipalib/plugins/migration.py  | 16 
 ipalib/plugins/passwd.py |  2 +-
 ipalib/plugins/permission.py |  4 ++--
 ipaserver/dcerpc.py  |  2 +-
 ipaserver/install/ipa_otptoken_import.py |  2 +-
 ipaserver/install/ipa_replica_prepare.py |  2 +-
 ipaserver/install/ipa_restore.py |  2 +-
 ipatests/pytest_plugins/integration.py   |  2 +-
 11 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/install/tools/ipa-httpd-kdcproxy b/install/tools/ipa-httpd-kdcproxy
index 5e9863f8bd82e1628030b0b767a6697ab2a1d7bd..5e67f61a6e2b3fe26532323d773bd502ac52f454 100755
--- a/install/tools/ipa-httpd-kdcproxy
+++ b/install/tools/ipa-httpd-kdcproxy
@@ -141,7 +141,7 @@ class KDCProxyConfig(object):
 try:
 valid = self.validate_symlink()
 except ConfigFileError as e:
-self.log.warn("Cannot enable KDC proxy: %s " % e)
+self.log.warning("Cannot enable KDC proxy: %s " % e)
 return False
 
 if valid:
@@ -149,7 +149,7 @@ class KDCProxyConfig(object):
 return True
 
 if not os.path.isfile(self.conf):
-self.log.warn("'%s' does not exist", self.conf)
+self.log.warning("'%s' does not exist", self.conf)
 return False
 
 # create the symbolic link
@@ -163,7 +163,7 @@ class KDCProxyConfig(object):
 try:
 valid = self.validate_symlink()
 except CheckError as e:
-self.log.warn("Cannot disable KDC proxy: %s " % e)
+self.log.warning("Cannot disable KDC proxy: %s " % e)
 return False
 
 if valid:
@@ -203,8 +203,8 @@ def main(debug=DEBUG, time_limit=TIME_LIMIT):
 api.log.info('KDC proxy disabled')
 return 0
 except CheckError as e:
-api.log.warn(str(e))
-api.log.warn('Disabling KDC proxy')
+api.log.warning(str(e))
+api.log.warning('Disabling KDC proxy')
 cfg.remove_symlink()
 return 0
 except Exception as e:
diff --git a/ipa-client/ipaclient/ipadiscovery.py b/ipa-client/ipaclient/ipadiscovery.py
index 2e51293c2db35d655b1d9936103a729bd61a60ae..45a71e190e56d33d51d37f16ae61a7b4c28df521 100644
--- a/ipa-client/ipaclient/ipadiscovery.py
+++ b/ipa-client/ipaclient/ipadiscovery.py
@@ -266,14 +266,14 @@ class IPADiscovery(object):
 # via DNS
 break
 elif ldapret[0] == NOT_IPA_SERVER:
-root_logger.warn(
+root_logger.warning(
'Skip %s: not an IPA server', server)
 elif ldapret[0] == NO_LDAP_SERVER:
-root_logger.warn(
+root_logger.warning(
'Skip %s: LDAP server is not responding, unable to verify if '
'this is an IPA server', server)
 else:
-root_logger.warn(
+root_logger.warning(
'Skip %s: cannot verify if this is an IPA server', server)
 
 # If one of LDAP servers checked rejects access (maybe anonymous
diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py
index 59cb0ea3982256e9d98b8216207514e28e229d03..3da44ef3c34f8e0540b6dcdc3465b913c11833c5 100644
--- a/ipalib/plugins/dns.py
+++ b/ipalib/plugins/dns.py
@@ -3438,7 +3438,7 @@ class dnsrecord(LDAPObject):
 
 while attempt < max_attempts:
 if attempt >= warn_attempts:
-log_fn = self.log.warn
+log_fn = self.log.warning
 attempt += 1
 try:
 dns_answer = resolver.query(dns_name, rdtype,
@@ -3514,7 +3514,7 @@ class dnsrecord(LDAPObject):
 except dns.resolver.NoNameservers as e:
 # Do not raise exception if we have got SERVFAILs.
 # Maybe the user has created an invalid zone intentionally.
-self.log.warn('waiting for DNS answer {%s}: got {%s}; '
+self.log.warning('waiting for DNS answer {%s}: got {%s}; '
   'ignoring', ldap_rrset, type(e))
 continue
 
diff --git a/ipalib/plugins

Re: [Freeipa-devel] [PATCH 0398] logger: Use warning instead of warn

2016-01-15 Thread Martin Basti



On 15.01.2016 16:27, Tomas Babej wrote:

Hi,

this should build up to another pylint-related patch Martin^2 has in works.

Tomas




NACK :)

* Module ipalib.plugins.dns
ipalib/plugins/dns.py:3441: [E1101(no-member), 
dnsrecord.wait_for_modified_attr] Class 'log' has no 'warn' member)


-- 
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code