diff options
Diffstat (limited to 'lib/block_handlers.cpp')
-rw-r--r-- | lib/block_handlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/block_handlers.cpp b/lib/block_handlers.cpp index 6140d40..e35733b 100644 --- a/lib/block_handlers.cpp +++ b/lib/block_handlers.cpp @@ -68,7 +68,7 @@ void BlockActor::handle_top_token( //tell the upstream about the input requirements OutputHintMessage output_hints; output_hints.history_bytes = this->input_configs[i].lookahead_items*this->input_items_sizes[i]; - output_hints.reserve_bytes = size_t(std::ceil(this->output_multiple_items/this->relative_rate)); + output_hints.reserve_bytes = 1; //TODO what do we want here, and so we like these hints at all? output_hints.token = this->input_tokens[i]; this->post_upstream(i, output_hints); |