Commit c1f5a2bc by Őry Máté

rename send_notification to send_expiration

parent 48f8974e
...@@ -101,11 +101,11 @@ def get_keys(vm): ...@@ -101,11 +101,11 @@ def get_keys(vm):
command='get_keys', args={}, uuid=get_keys.request.id) command='get_keys', args={}, uuid=get_keys.request.id)
@celery.task(name='agent.send_notification') @celery.task(name='agent.send_expiration')
def send_notification(vm, msg): def send_expiration(vm, url):
logger.debug('send_notification(%s, %s)', vm, msg) logger.debug('send_expiration(%s, %s)', vm, url)
return reactor.connections[vm].send_command( return reactor.connections[vm].send_command(
command='send_notification', args={'msg': msg}) command='send_expiration', args={'url': url})
@celery.task(name='vm.tasks.local_agent_tasks.renew') @celery.task(name='vm.tasks.local_agent_tasks.renew')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment