[Serve] Fix batching bug

This commit is contained in:
Simon Mo 2020-02-05 14:18:19 -08:00 committed by GitHub
parent 0826f95e1c
commit a0ba4499ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -156,9 +156,11 @@ class RayServeMixin:
serve_context.web = context_flags.pop()
serve_context.batch_size = batch_size
start_timestamp = time.time()
# Flask requests are passed to __call__ as a list
arg_list = [arg_list]
result_list = self.__call__(*args, **kwargs_list)
start_timestamp = time.time()
result_list = self.__call__(*arg_list, **kwargs_list)
self._serve_metric_latency_list.append(time.time() -
start_timestamp)