-
Notifications
You must be signed in to change notification settings - Fork 1.7k
chore(core): Upgrade Vector to Rust 1.68 (clippy fixes only) #16745
New issue
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
Conversation
* fix(pulsar sink): Rename batch size option To be consistent with other sink batch options. Signed-off-by: Jesse Szwedko <[email protected]> * Update src/sinks/pulsar.rs Co-authored-by: Spencer Gilbert <[email protected]> --------- Signed-off-by: Jesse Szwedko <[email protected]> Co-authored-by: Spencer Gilbert <[email protected]>
Signed-off-by: Jesse Szwedko <[email protected]>
Signed-off-by: Jesse Szwedko <[email protected]>
Signed-off-by: Jesse Szwedko <[email protected]>
…oads pages (#16441) * attempt to add header * Remove from header, add to footer and release pages Signed-off-by: Jesse Szwedko <[email protected]> * Remove extra whitespace Signed-off-by: Jesse Szwedko <[email protected]> --------- Signed-off-by: Jesse Szwedko <[email protected]> Co-authored-by: Jesse Szwedko <[email protected]>
* Revert "chore(deps): upgrade AWS crates to v0.54.1 (#16443)" This reverts commit 0d084c2. * Revert "chore(deps): Update aws-sdks to 0.23 and aws supporting crates to 0.53 (#16365)" This reverts commit f4e90e1. Signed-off-by: Jesse Szwedko <[email protected]>
* Remove default_max_length default Signed-off-by: Stephen Wakely <[email protected]> * Remove default_max_length default from unix Signed-off-by: Stephen Wakely <[email protected]> * Update configurable docs Signed-off-by: Stephen Wakely <[email protected]> --------- Signed-off-by: Stephen Wakely <[email protected]>
Co-authored-by: neuronull <[email protected]> Signed-off-by: Jesse Szwedko <[email protected]>
✅ Deploy Preview for vector-project canceled.
|
✅ Deploy Preview for vrl-playground ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
Docker images for Rust 1.68 don't exist yet, so integration tests will fail until those are uploaded |
src/sources/socket/mod.rs
Outdated
@@ -835,7 +835,7 @@ mod test { | |||
.unwrap(); | |||
|
|||
// Spawn the source task and wait until we're sure it's listening: | |||
let _ = tokio::spawn(source_task); | |||
std::mem::drop(tokio::spawn(source_task)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These could be just drop
, as it is part of the standard prelude.
We are still running into the ICE we saw in |
Regression Detector ResultsRun ID: 4f6da76b-0f2e-40aa-8f89-a30b176667ac ExplanationA regression test is an integrated performance test for The table below, if present, lists those experiments that have experienced a statistically significant change in mean optimization goal performance between baseline and comparison SHAs with 90.00% confidence OR have been detected as newly erratic. Negative values mean that baseline is faster, positive comparison. Results that do not exhibit more than a ±5.00% change in their mean optimization goal are discarded. An experiment is erratic if its coefficient of variation is greater than 0.1. The abbreviated table will be omitted if no interesting change is observed. No interesting changes in experiment optimization goals with confidence ≥ 90.00% and |Δ mean %| ≥ 5.00%. Fine details of change detection per experiment.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice cleanups.
closes #16744