From: JINMEI Tatuya Date: Tue, 4 Jun 2013 21:44:33 +0000 (-0700) Subject: [2964] update a comment, hopefully making it clearer X-Git-Tag: bind10-1.2.0beta1-release~423^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b02f05774d65cac0b87452dfea6a65be73e08069;p=thirdparty%2Fkea.git [2964] update a comment, hopefully making it clearer --- diff --git a/src/bin/xfrin/xfrin.py.in b/src/bin/xfrin/xfrin.py.in index b99c7b6075..bcf96afe48 100755 --- a/src/bin/xfrin/xfrin.py.in +++ b/src/bin/xfrin/xfrin.py.in @@ -1728,7 +1728,9 @@ class Xfrin: return (1, 'data source to transfer %s to is unknown' % format_zone_str(zone_name, rrclass)) zone_soa = _get_zone_soa(datasrc_client, zone_name, rrclass) - except isc.datasrc.Error as ex: # rare case error, convert (so logged) + except isc.datasrc.Error as ex: + # rare case error. re-raise as XfrinException so it'll be logged + # in command_handler(). raise XfrinException('unexpected failure in datasrc module: ' + str(ex))