We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I am file with following lines, VS Code extension can't parse it:
select! { _ = listener.listen() => { // this should be full sync let changes = listener.sync_changes().await; trace!("{} received changes: {:#?}",S::LABEL,changes); Ok(search(self.store().read().await)) }, _ = &mut timer => { debug!( SPEC = S::LABEL, Timeout = *MAX_WAIT_TIME, "store look up timeout expired"); return Err(IoError::new( ErrorKind::TimedOut, format!("timed out searching metadata {} failed due to timeout: {} ms",S::LABEL,*MAX_WAIT_TIME), )) } }
Interesting part is that in other places, select! macro works fine.
select!
Steps to reproduce:
fluvio/src/client/sync/mod.rs
You should see above lines marked as error. This used to work some months back
The text was updated successfully, but these errors were encountered:
https://github.com/infinyon/fluvio/blob/master/src/client/src/sync/mod.rs#L107
Duplicate of #1165.
Sorry, something went wrong.
No branches or pull requests
When I am file with following lines, VS Code extension can't parse it:
Interesting part is that in other places,
select!
macro works fine.Steps to reproduce:
fluvio/src/client/sync/mod.rs
.You should see above lines marked as error. This used to work some months back
The text was updated successfully, but these errors were encountered: