~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/protocol.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-07-17 07:04:50 UTC
  • mfrom: (4475.2.5 hpss-log-noise)
  • Revision ID: pqm@pqm.ubuntu.com-20090717070450-mfptrbvfqdenjoui
(andrew) Fix server log noise when HPSS client calls an unknown smart
        method.

Show diffs side-by-side

added added

removed removed

Lines of Context:
897
897
            # We do *not* set self.decoding_failed here.  The message handler
898
898
            # has raised an error, but the decoder is still able to parse bytes
899
899
            # and determine when this message ends.
900
 
            log_exception_quietly()
 
900
            if not isinstance(exception.exc_value, errors.UnknownSmartMethod):
 
901
                log_exception_quietly()
901
902
            self.message_handler.protocol_error(exception.exc_value)
902
903
            # The state machine is ready to continue decoding, but the
903
904
            # exception has interrupted the loop that runs the state machine.