##// END OF EJS Templates
http: Remove default arguments from prepare callback function.
Martin Bornhold -
r961:85c844b7 default
parent child Browse files
Show More
@@ -195,9 +195,8 b' class HttpHooksCallbackDaemon(ThreadedHo'
195 self._callback_thread = None
195 self._callback_thread = None
196
196
197
197
198 def prepare_callback_daemon(extras, protocol=None, use_direct_calls=False):
198 def prepare_callback_daemon(extras, protocol, use_direct_calls):
199 callback_daemon = None
199 callback_daemon = None
200 protocol = protocol.lower() if protocol else None
201
200
202 if use_direct_calls:
201 if use_direct_calls:
203 callback_daemon = DummyHooksCallbackDaemon()
202 callback_daemon = DummyHooksCallbackDaemon()
General Comments 0
You need to be logged in to leave comments. Login now