# File lib/mcollective/security/base.rb, line 196
      def should_process_msg?(msg, msgid)
        if msg.expected_msgid
          unless msg.expected_msgid == msgid
            msgtext = "Got a message with id %s but was expecting %s, ignoring message" % [msgid, msg.expected_msgid]
            Log.debug msgtext
            raise MsgDoesNotMatchRequestID, msgtext
          end
        end

        true
      end