Rename notification/task to notification/tasks

We're using zaqar.notification.tasks to look for the notifier
driver by stevedore, so this patch just rename the package
name to keep consistence. No impact for end user and migration.

Change-Id: I7694af4dbc4f73703e429560fb0a1457f3e1193a
This commit is contained in:
Fei Long Wang 2016-05-26 16:46:11 +12:00
parent 437c2fe567
commit ebc6721b4f
6 changed files with 12 additions and 5 deletions

View File

@ -0,0 +1,7 @@
The :mod:`zaqar.notification.tasks.mailto` module
==================================================
.. automodule:: zaqar.notification.tasks.mailto
:members:
:undoc-members:
:show-inheritance:

View File

@ -1,7 +1,7 @@
The :mod:`zaqar.notification.task.webhook` module The :mod:`zaqar.notification.tasks.webhook` module
================================================== ==================================================
.. automodule:: zaqar.notification.task.webhook .. automodule:: zaqar.notification.tasks.webhook
:members: :members:
:undoc-members: :undoc-members:
:show-inheritance: :show-inheritance:

View File

@ -69,9 +69,9 @@ zaqar.storage.redis.driver.queue.stages =
message_queue_handler = zaqar.storage.redis.messages:MessageQueueHandler message_queue_handler = zaqar.storage.redis.messages:MessageQueueHandler
zaqar.notification.tasks = zaqar.notification.tasks =
http = zaqar.notification.task.webhook:WebhookTask http = zaqar.notification.tasks.webhook:WebhookTask
https = zaqar.notification.task.webhook:WebhookTask https = zaqar.notification.tasks.webhook:WebhookTask
mailto = zaqar.notification.task.mailto:MailtoTask mailto = zaqar.notification.tasks.mailto:MailtoTask
tempest.test_plugins = tempest.test_plugins =
zaqar_tests = zaqar.tests.tempest_plugin.plugin:ZaqarTempestPlugin zaqar_tests = zaqar.tests.tempest_plugin.plugin:ZaqarTempestPlugin