From ca66ef58557075397bd7dde3f5c853f04d040d76 Mon Sep 17 00:00:00 2001 From: Idan Hefetz Date: Sun, 24 Feb 2019 09:51:22 +0000 Subject: [PATCH] Small bug fix - remove not existing constant usage Change-Id: I5c7ccece37a26f5148b6d549ea711128d3caa80c --- vitrage/entity_graph/processor/processor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vitrage/entity_graph/processor/processor.py b/vitrage/entity_graph/processor/processor.py index 41ac7d110..de8cc9e3d 100644 --- a/vitrage/entity_graph/processor/processor.py +++ b/vitrage/entity_graph/processor/processor.py @@ -306,8 +306,7 @@ class Processor(processor.ProcessorBase): GraphAction.CREATE_ENTITY]: graph_vertex = self.entity_graph.get_vertex( vertex.vertex_id) - elif action in [GraphAction.END_MESSAGE, - GraphAction.REMOVE_DELETED_ENTITY, + elif action in [GraphAction.REMOVE_DELETED_ENTITY, GraphAction.UPDATE_RELATIONSHIP, GraphAction.DELETE_RELATIONSHIP]: return None