From: JINMEI Tatuya Date: Wed, 5 Oct 2011 06:31:25 +0000 (-0700) Subject: [1261] corrected the type of zone_name arg for publish_xfrin_news (it's X-Git-Tag: perftcpdns_before_epoll~37^2~21^2~13^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3a1ea108d3df58dcd2d247fdc87b3d1fbd953cf;p=thirdparty%2Fkea.git [1261] corrected the type of zone_name arg for publish_xfrin_news (it's now a Name object, not a string) --- diff --git a/src/bin/xfrin/xfrin.py.in b/src/bin/xfrin/xfrin.py.in index 2e95eb17c6..b0a4550368 100755 --- a/src/bin/xfrin/xfrin.py.in +++ b/src/bin/xfrin/xfrin.py.in @@ -1028,7 +1028,8 @@ class Xfrin: news(command: zone_new_data_ready) to zone manager and xfrout. if xfrin failed, just tell the bad news to zone manager, so that it can reset the refresh timer for that zone. ''' - param = {'zone_name': zone_name, 'zone_class': zone_class.to_text()} + param = {'zone_name': zone_name.to_text(), + 'zone_class': zone_class.to_text()} if xfr_result == XFRIN_OK: msg = create_command(notify_out.ZONE_NEW_DATA_READY_CMD, param) # catch the exception, in case msgq has been killed.