Changeset 85447 in webkit


Ignore:
Timestamp:
May 1, 2011 6:03:15 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-01 Arno Renevier <arno@renevier.net>

Reviewed by Eric Seidel.

wrong exception raised in Lighttpd start method
https://bugs.webkit.org/show_bug.cgi?id=59283

raise standard Exception instead of non existent
google.httpd_utils.HttpdNotStarted

  • Scripts/webkitpy/layout_tests/port/http_server.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r85446 r85447  
     12011-05-01  Arno Renevier  <arno@renevier.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        wrong exception raised in Lighttpd start method
     6        https://bugs.webkit.org/show_bug.cgi?id=59283
     7
     8        raise standard Exception instead of non existent
     9        google.httpd_utils.HttpdNotStarted
     10
     11        * Scripts/webkitpy/layout_tests/port/http_server.py:
     12
    1132011-05-01  Eric Seidel  <eric@webkit.org>
    214
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/http_server.py

    r83477 r85447  
    4949
    5050
    51 class HttpdNotStarted(Exception):
    52     pass
    53 
    54 
    5551class Lighttpd(http_server_base.HttpServerBase):
    5652
     
    224220        # Our process terminated already
    225221        if not server_started or self._process.returncode != None:
    226             raise google.httpd_utils.HttpdNotStarted('Failed to start httpd.')
     222            raise Exception('Failed to start httpd.')
    227223
    228224        _log.debug("Server successfully started")
Note: See TracChangeset for help on using the changeset viewer.