WIP on bug fix

This commit is contained in:
Dominik Werder
2021-05-13 16:38:46 +02:00
parent 21aa59e0d0
commit 70426e8e48
8 changed files with 22 additions and 15 deletions

View File

@@ -239,6 +239,9 @@ where
continue 'outer;
}
} else {
// TODO make sure that we don't poll our input here after it has completed.
err::todo();
let cur = self.cur(cx);
match self.handle(cur) {
Some(item) => item,

View File

@@ -27,7 +27,7 @@ impl PreBinnedValueFetchedStream {
let nodeix = node_ix_for_patch(&query.patch, &query.channel, &node_config.node_config.cluster);
let node = &node_config.node_config.cluster.nodes[nodeix as usize];
let uri: hyper::Uri = format!(
"http://{}:{}/api/1/prebinned?{}",
"http://{}:{}/api/4/prebinned?{}",
node.host,
node.port,
query.make_query_string()