From 6f528a8a60034b3882c7ff98f08e8eb1802a969a Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Apr 23 2018 09:15:07 +0000 Subject: Fix wrong assigment in BaseEvent constructor. --- diff --git a/freshmaker/events.py b/freshmaker/events.py index 3214e61..afdf484 100644 --- a/freshmaker/events.py +++ b/freshmaker/events.py @@ -45,7 +45,7 @@ class BaseEvent(object): """ self.msg_id = msg_id self.manual = manual - self.dry_run = False + self.dry_run = dry_run # Moksha calls `consumer.validate` on messages that it receives, and # even though we have validation turned off in the config there's still