From 0328e5a31ab1b32332aa4ffae4c108f1fbcccb3a Mon Sep 17 00:00:00 2001 From: Armando Migliaccio Date: Tue, 28 Jun 2016 11:49:31 -0700 Subject: [PATCH] Remove notification for process event Once subscribers have been updated, this notification no longer has reason to exist. Change-Id: Ie617e0ecd568a1306221b15ddaef102e395f016a Depends-on: I2b17ee41a9bfc020099c4f2f251afa32bb48b290 Depends-on: Ib225e4fba26265534cfcb2a75042bd193a78e15f Depends-on: I4513fb64365fe5dcb81ab4ced3dc238e323aa332 --- neutron/worker.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/neutron/worker.py b/neutron/worker.py index 44d5014505f..b9b8fd2de11 100644 --- a/neutron/worker.py +++ b/neutron/worker.py @@ -89,7 +89,4 @@ class NeutronWorker(service.ServiceBase): def start(self): if self.worker_process_count > 0: - # TODO(armax): remove the AFTER_CREATE notification once - # subscribers have been updated - registry.notify(resources.PROCESS, events.AFTER_CREATE, self.start) registry.notify(resources.PROCESS, events.AFTER_INIT, self.start)