Stabilize ThreadedMotoServer (#5401)

This commit is contained in:
Bert Blommers 2022-08-18 19:11:29 +00:00 committed by GitHub
parent ecc0da7e87
commit 87683a786f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,13 +8,6 @@ from .werkzeug_app import DomainDispatcherApplication, create_backend_app
class ThreadedMotoServer:
def __init__(self, ip_address="0.0.0.0", port=5000, verbose=True):
if verbose:
print(
"The ThreadedMotoServer is considered in beta for now, and the exact interface and behaviour may still change."
)
print("Please let us know if youd like to see any changes.")
print("========")
self._port = port
self._thread = None