#1550 Return immediately when message parser returns None
Merged 4 years ago by qwan. Opened 4 years ago by qwan.
qwan/fm-orchestrator return-on-message-not-support  into  v3

@@ -147,6 +147,9 @@ 

                  log.warning(str(e))

                  return

  

+         if event_info is None:

+             return

+ 

          # Primary work is done here.

          try:

              self.process_message(event_info)

no initial comment

+1. Perhaps, something could be logged for this case.

Build #702 failed (commit: 7863831).
Rebase or make new commits to rebuild.

+1. Perhaps, something could be logged for this case.

There will be a lot of messages produced if we log for this, and occupy the system resources.

Pull-Request has been merged by qwan

4 years ago