Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,8 @@ def convert_request(request,
"A value is required for request_output_len")
inputs['streaming'] = get_input_scalar_by_name(request, 'streaming',
batch_size, batch_index)
if inputs['streaming'] is None:
inputs['streaming'] = False
if inputs['streaming'] and not decoupled:
raise pb_utils.TritonModelException(
"Streaming is only supported in decoupled mode.")
Expand Down
Loading