Changeset 51521 in webkit


Ignore:
Timestamp:
Nov 30, 2009 4:40:04 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-30 Yuzo Fujishima <yuzo@google.com>

Reviewed by Alexey Proskuryakov.

Update pywebsocket to 0.4.2.1.
This is to fix a bug that some messages are logged to stderr even when the log file is specified.
https://bugs.webkit.org/show_bug.cgi?id=31976

  • pywebsocket/mod_pywebsocket/standalone.py:
  • pywebsocket/setup.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51518 r51521  
     12009-11-30  Yuzo Fujishima  <yuzo@google.com>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Update pywebsocket to 0.4.2.1.
     6        This is to fix a bug that some messages are logged to stderr even when the log file is specified.
     7        https://bugs.webkit.org/show_bug.cgi?id=31976
     8
     9        * pywebsocket/mod_pywebsocket/standalone.py:
     10        * pywebsocket/setup.py:
     11
    1122009-11-30  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/pywebsocket/mod_pywebsocket/standalone.py

    r51406 r51521  
    7676import dispatch
    7777import handshake
     78import util
    7879
    7980
     
    172173            socket_ = OpenSSL.SSL.Connection(ctx, socket_)
    173174        return socket_
     175
     176    def handle_error(self, rquest, client_address):
     177        """Override SocketServer.handle_error."""
     178
     179        logging.error(
     180            ('Exception in processing request from: %r' % (client_address,)) +
     181            '\n' + util.get_stack_trace())
     182        # Note: client_address is a tuple. To match it against %r, we need the
     183        # trailing comma.
    174184
    175185
  • trunk/WebKitTools/pywebsocket/setup.py

    r51406 r51521  
    5757      packages=[_PACKAGE_NAME],
    5858      url='http://code.google.com/p/pywebsocket/',
    59       version='0.4.2',
     59      version='0.4.2.1',
    6060      )
    6161
Note: See TracChangeset for help on using the changeset viewer.