|
@@ -29,7 +29,6 @@ from isc.config.module_spec import ModuleSpecError
|
|
|
from isc.cc import SessionError, SessionTimeout, ProtocolError
|
|
|
import isc.util.process
|
|
|
import isc.util.cio.socketsession
|
|
|
-from isc.notify.notify_out import ZONE_NEW_DATA_READY_CMD
|
|
|
import isc.server_common.tsig_keyring
|
|
|
from isc.server_common.dns_tcp import DNSTCPContext
|
|
|
from isc.datasrc import DataSourceClient
|
|
@@ -543,7 +542,7 @@ class DDNSServer:
|
|
|
def __notify_xfrout(self, zname, zclass):
|
|
|
'''Notify xfrout of the update.'''
|
|
|
param = {'zone_name': zname.to_text(), 'zone_class': zclass.to_text()}
|
|
|
- msg = create_command(ZONE_NEW_DATA_READY_CMD, param)
|
|
|
+ msg = create_command('notify', param)
|
|
|
self.__notify_update(XFROUT_MODULE_NAME, msg, zname, zclass)
|
|
|
|
|
|
def __notify_update(self, modname, msg, zname, zclass):
|