mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
Fixed #26976 -- Added LiveServerTestCase.server_thread_class to ease subclassing.
This commit is contained in:
parent
24123c3136
commit
013ee21cf8
1
AUTHORS
1
AUTHORS
@ -144,6 +144,7 @@ answer newbie questions, and generally made Django that much better:
|
|||||||
Chris Bennett <chrisrbennett@yahoo.com>
|
Chris Bennett <chrisrbennett@yahoo.com>
|
||||||
Chris Cahoon <chris.cahoon@gmail.com>
|
Chris Cahoon <chris.cahoon@gmail.com>
|
||||||
Chris Chamberlin <dja@cdc.msbx.net>
|
Chris Chamberlin <dja@cdc.msbx.net>
|
||||||
|
Chris Jerdonek
|
||||||
Chris Jones <chris@brack3t.com>
|
Chris Jones <chris@brack3t.com>
|
||||||
Chris Lamb <chris@chris-lamb.co.uk>
|
Chris Lamb <chris@chris-lamb.co.uk>
|
||||||
Chris Streeter <chris@chrisstreeter.com>
|
Chris Streeter <chris@chrisstreeter.com>
|
||||||
|
@ -1285,6 +1285,7 @@ class LiveServerTestCase(TransactionTestCase):
|
|||||||
other thread can see the changes.
|
other thread can see the changes.
|
||||||
"""
|
"""
|
||||||
host = 'localhost'
|
host = 'localhost'
|
||||||
|
server_thread_class = LiveServerThread
|
||||||
static_handler = _StaticFilesHandler
|
static_handler = _StaticFilesHandler
|
||||||
|
|
||||||
@classproperty
|
@classproperty
|
||||||
@ -1321,7 +1322,7 @@ class LiveServerTestCase(TransactionTestCase):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _create_server_thread(cls, connections_override):
|
def _create_server_thread(cls, connections_override):
|
||||||
return LiveServerThread(
|
return cls.server_thread_class(
|
||||||
cls.host,
|
cls.host,
|
||||||
cls.static_handler,
|
cls.static_handler,
|
||||||
connections_override=connections_override,
|
connections_override=connections_override,
|
||||||
|
Loading…
Reference in New Issue
Block a user